36 lines
974 B
Bash
36 lines
974 B
Bash
# -------------------------------------------------------
|
|
# Odoo Docker Compose - Environment Variables
|
|
# Copy this file to .env and fill in your values
|
|
# -------------------------------------------------------
|
|
|
|
# --- PostgreSQL ---
|
|
|
|
# PostgreSQL image version tag
|
|
ODOO_DB_VERSION=15
|
|
|
|
# Host path for PostgreSQL data directory (bind mount)
|
|
ODOO_DB_PATH=/path/to/postgres/data
|
|
|
|
# Password for the 'odoo' PostgreSQL user
|
|
ODOO_DB_PASSWORD=change_me
|
|
|
|
# --- Odoo App ---
|
|
|
|
# Odoo image version tag (15+ required for /web/health endpoint)
|
|
ODOO_APP_VERSION=17
|
|
|
|
# Host port to expose the Odoo web interface on
|
|
ODOO_PORT=8069
|
|
|
|
# Host path for Odoo file store and sessions (bind mount)
|
|
ODOO_DATA_PATH=/path/to/odoo/data
|
|
|
|
# Host path for odoo.conf config file directory (bind mount)
|
|
ODOO_CONFIG_PATH=/path/to/odoo/config
|
|
|
|
# Host path for custom/extra addons (bind mount)
|
|
ODOO_ADDONS_PATH=/path/to/odoo/addons
|
|
|
|
# Timezone for the Odoo container (IANA format)
|
|
ODOO_TZ=America/Los_Angeles
|