Skip to content

Instantly share code, notes, and snippets.

View alisterct's full-sized avatar

Alister Sanders alisterct

  • Christchurch
View GitHub Profile
@alisterct
alisterct / docker-compose.yaml
Created June 13, 2023 04:47
docker-compose file for Odoo module development
version: "3"
services:
postgres:
image: postgres:13
environment:
- POSTGRES_USER=odoo
- POSTGRES_PASSWORD=xxx
- POSTGRES_DB=postgres
volumes:
- "postgres-data:/var/lib/postgresql/data"