Skip to content

Instantly share code, notes, and snippets.

@ahvahsky2008
Created January 13, 2020 06:56
Show Gist options
  • Save ahvahsky2008/4bf4e546d970fe66f7df6584c02f9790 to your computer and use it in GitHub Desktop.
Save ahvahsky2008/4bf4e546d970fe66f7df6584c02f9790 to your computer and use it in GitHub Desktop.
version: '2'
services:
web:
image: odoo:12.0
depends_on:
- mydb
ports:
- "8069:8069"
environment:
- HOST=mydb
- USER=odoo
- PASSWORD=myodoo
mydb:
image: postgres:10
environment:
- POSTGRES_DB=postgres
- POSTGRES_PASSWORD=myodoo
- POSTGRES_USER=odoo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment