Skip to content

Instantly share code, notes, and snippets.

@ShinChven
Created March 23, 2021 06:16
Show Gist options
  • Save ShinChven/f82508669397cd61b4a42840cdf1a5bf to your computer and use it in GitHub Desktop.
Save ShinChven/f82508669397cd61b4a42840cdf1a5bf to your computer and use it in GitHub Desktop.
odoo
"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