Skip to content

Instantly share code, notes, and snippets.

@metodribic
Created October 30, 2020 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metodribic/882557ce73d6db2a159b6b2782bccc44 to your computer and use it in GitHub Desktop.
Save metodribic/882557ce73d6db2a159b6b2782bccc44 to your computer and use it in GitHub Desktop.
Odoo 13 docker compose with mounted custom addon
version: '3'
services:
db:
image: postgres:11
environment:
- POSTGRES_PASSWORD=odoo
- POSTGRES_USER=odoo
- POSTGRES_DB=postgres
restart: always
odoo:
image: odoo:13
depends_on:
- db
ports:
- "8069:8069"
tty: true
command: -- --dev=reload -u my_module
volumes:
- ./addons:/mnt/extra-addons
- ./etc:/etc/odoo
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment