Skip to content

Instantly share code, notes, and snippets.

@kordano
Last active November 18, 2024 14:15
Show Gist options
  • Save kordano/cac5d8d2aefffb1f993bd7596b0e965d to your computer and use it in GitHub Desktop.
Save kordano/cac5d8d2aefffb1f993bd7596b0e965d to your computer and use it in GitHub Desktop.
Odoo 18 Docker Setup
services:
odoo:
image: odoo:18.0
env_file: .env
depends_on:
- postgres
ports:
- "127.0.0.1:8069:8069"
volumes:
- data:/var/lib/odoo
postgres:
image: postgres:13
env_file: .env
volumes:
- db:/var/lib/postgresql/data/pgdata
volumes:
data:
db:
networks:
local_network:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment