Arab KHEMAR

Results 8 comments of Arab KHEMAR

Try to add this command to your deployment: odoo -u website -d db_name ``` ... spec: containers: - name: odoo_container_name image: odoo command: ["odoo", "-u", "website", "-d", "db_name"] ... ```...

@JoseRamonGarcia you can use the v12 Dockerfile to build your own image with latest DEB from nightly.odoo.com

Yep ! But you can grab the latest deb and update at least addons from git repo... this can be done by building the docker image and extra commands: -...

@ZerNox you can add '"local" tag after pulling an image (version from Dockerfile) `docker tag odoo:14.0 odoo:14.0-XXXXYYZZ`

@guidev224 export your database from odoo database manager (make sure to include filestore!) then import it on your local env.

What do you mean by "external database"? Your postgres server/container is in the same server (where Docker is installed) or in a separate one?

Hi @Etren, For connecting to your Postgres Server: ```yml ... odoo: image: odoo:15 environment: - HOST=XX.XX.XX.XX - PORT=5432 #default - USER=odoo - PASSWORD=odoo ... ``` For database, you have to...

Hi @uwabujo77, I think that this is a "how to" rather than an issue, so forums are the right place to find/get an answer ASAP! But you can try following:...