Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ Current runtime ownership is intentionally narrow and explicit:
- The shared tenant compose database service stays pinned to `postgres:17`
while existing tenant DB volumes still use the legacy
`/var/lib/postgresql/data` layout.
- The shared local compose contract includes the image-owned Launchplane runtime
addon root `/opt/launchplane/addons` and loads
`base,web,launchplane_runtime_health` as server-wide modules by default.
`/web/health` remains the local container liveness check; Launchplane runtime
identity evidence is exposed by the base image at `/launchplane/health`.
- A Postgres major-version bump is not a routine dependency refresh on this
surface. Treat it as explicit migration work with a documented upgrade path
for existing tenant data volumes.
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ x-odoo-env: &odoo-env
ODOO_DEV_MODE: ${ODOO_DEV_MODE:-}
ODOO_INSTALL_MODULES: ${ODOO_INSTALL_MODULES:-}
ODOO_UPDATE_MODULES: ${ODOO_UPDATE_MODULES:-AUTO}
ODOO_ADDONS_PATH: ${ODOO_ADDONS_PATH:-/opt/project/addons,/opt/extra_addons,/opt/enterprise,/odoo/addons}
ODOO_ADDONS_PATH: ${ODOO_ADDONS_PATH:-/opt/project/addons,/opt/extra_addons,/opt/launchplane/addons,/opt/enterprise,/odoo/addons}
ODOO_SERVER_WIDE_MODULES: ${ODOO_SERVER_WIDE_MODULES:-base,web,launchplane_runtime_health}
ODOO_DATA_WORKFLOW_LOCK_FILE: ${ODOO_DATA_WORKFLOW_LOCK_FILE:-/volumes/data/.data_workflow_in_progress}
ODOO_DATA_WORKFLOW_LOCK_TIMEOUT_SECONDS: ${ODOO_DATA_WORKFLOW_LOCK_TIMEOUT_SECONDS:-7200}
IMAGE_ODOO_ENTERPRISE_LOCATION: /volumes/enterprise_disabled
Expand Down