refactor(ServicesGenerate): update command signature from 'services:generate' to 'generate:services' for consistency; update Dockerfile to run service generation during build; update Odoo image version to 18 and add extra addons volume in compose configuration

This commit is contained in:
Andras Bacsai
2025-04-13 15:16:54 +02:00
parent 4bc9786046
commit 1ab7405e2e
4 changed files with 21 additions and 19 deletions

View File

@@ -6,7 +6,7 @@
services:
odoo:
image: odoo:17
image: odoo:18
environment:
- SERVICE_FQDN_ODOO_8069
- HOST=postgresql
@@ -14,6 +14,7 @@ services:
- PASSWORD=$SERVICE_PASSWORD_POSTGRES
volumes:
- odoo-web-data:/var/lib/odoo
- odoo-extra-addons:/mnt/extra-addons
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8069"]
interval: 2s