first commit

This commit is contained in:
ange 2025-05-23 03:43:32 +00:00
commit 9cf4cf160e
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
2 changed files with 24 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# odoo

23
compose.yaml Normal file
View File

@ -0,0 +1,23 @@
---
services:
odoo:
image: docker.io/odoo:18
ports:
- "8000:8069"
volumes:
- odoo:/var/lib/odoo/
depends_on:
- db
db:
image: docker.io/postgres:17
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=odoo
- POSTGRES_PASSWORD=odoo
volumes:
- db:/var/lib/postgresql/data/
volumes:
db: {}
odoo: {}