-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow change of the databe name via. Docker env var #358
Comments
Yeah, this hardcoded database name makes me crazy. |
This allows the system administrator to set the standard PostgreSQL environment variable POSTGRES_DB to change the name of the database created by default. Fixes odoo#358.
|
This allows the system administrator to set the standard PostgreSQL environment variable POSTGRES_DB to change the name of the database created by default. Fixes odoo#358.
It's fine that it is hardcoded to |
Offer an example Docker Compose that will set the database name for Odoo. - odoo/docker#394 - odoo/docker#358 - odoo/docker#331
Offer an example Docker Compose that will set the database name for Odoo. - odoo/docker#394 - odoo/docker#358 - odoo/docker#331 Additional changes - Title case name Postgres - Correct indentation of prior example
Offer an example Docker Compose that will set the database name for Odoo. - odoo/docker#394 - odoo/docker#358 - odoo/docker#331 Additional changes - Title case name Postgres - Correct indentation of prior example
docker/14.0/wait-for-psql.py
Line 21 in f821260
would it be possible to change the last connection parameter
dbname='postgres'
todbname=args.db_name
to allow changing the postgres database nameThe text was updated successfully, but these errors were encountered: