Created
March 23, 2021 06:16
-
-
Save ShinChven/f82508669397cd61b4a42840cdf1a5bf to your computer and use it in GitHub Desktop.
odoo
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
"docker-compose.yml" 17L, 339C 1,1 All | |
version: '3.5' | |
services: | |
web: | |
image: odoo | |
depends_on: | |
- db | |
ports: | |
- "8069:8069" | |
environment: | |
- USER=odoo | |
- PASSWORD=odoo | |
db: | |
image: postgres:10 | |
environment: | |
- POSTGRES_DB=postgres | |
- POSTGRES_PASSWORD=odoo | |
- POSTGRES_USER=odoo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment