Created
April 15, 2021 08:16
-
-
Save akhdaniel/09487c6fd89731b9343207c19487e895 to your computer and use it in GitHub Desktop.
Odoo docker compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### yml | |
version: '2' | |
services: | |
web: | |
image: odoo:11 | |
depends_on: | |
- db | |
ports: | |
- "8069:8069" | |
volumes: | |
- ./data:/var/lib/odoo | |
- ./config:/etc/odoo | |
- ./addons:/mnt/extra-addons | |
- ./logs:/var/log/odoo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment