Skip to content

Instantly share code, notes, and snippets.

@marcosmamg
Last active January 31, 2021 16:04
Show Gist options
  • Save marcosmamg/e72bb36ce8da6be23f5a935b49a8d1a2 to your computer and use it in GitHub Desktop.
Save marcosmamg/e72bb36ce8da6be23f5a935b49a8d1a2 to your computer and use it in GitHub Desktop.
odoo docker compose
#https://hub.docker.com/r/bitnami/odoo/
#https://hub.docker.com/r/bitnami/postgresql
version: '2'
services:
postgresql:
image: 'docker.io/bitnami/postgresql:11-debian-10'
environment:
- POSTGRESQL_PASSWORD=
volumes:
- 'postgresql_data:/bitnami/postgresql'
odoo:
image: 'docker.io/bitnami/odoo:13-debian-10'
ports:
- '80:8069'
- '443:8071'
volumes:
- 'odoo_data:/bitnami'
depends_on:
- postgresql
environment:
- ODOO_EMAIL=
- ODOO_PASSWORD=
- POSTGRESQL_PASSWORD=
- WITHOUT_DEMO=all
# - SMTP_HOST=
# - SMTP_PORT=
# - SMTP_USER=
# - SMTP_PASSWORD=
- SMTP_PROTOCOL=tls
volumes:
postgresql_data:
driver: local
odoo_data:
driver: local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment