Compare commits
No commits in common. "featuremoving-env-vars-to-env-file" and "master" have entirely different histories.
featuremov
...
master
|
@ -1 +0,0 @@
|
|||
*.env
|
|
@ -4,7 +4,10 @@ services:
|
|||
image: docker.io/bitnami/postgresql:13
|
||||
volumes:
|
||||
- 'postgresql_data:/bitnami/postgresql'
|
||||
env_file: local.env
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- POSTGRESQL_USERNAME=bn_odoo
|
||||
- POSTGRESQL_DATABASE=bitnami_odoo
|
||||
odoo:
|
||||
image: docker.io/bitnami/odoo:15
|
||||
ports:
|
||||
|
@ -13,8 +16,12 @@ services:
|
|||
- 'odoo_data:/bitnami/odoo'
|
||||
depends_on:
|
||||
- postgresql
|
||||
env_file:
|
||||
- local.env
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- ODOO_DATABASE_HOST=postgresql
|
||||
- ODOO_DATABASE_PORT_NUMBER=5432
|
||||
- ODOO_DATABASE_USER=bn_odoo
|
||||
- ODOO_DATABASE_NAME=bitnami_odoo
|
||||
volumes:
|
||||
postgresql_data:
|
||||
driver: local
|
||||
|
|
Loading…
Reference in New Issue