Actualiser 0.variables.env
This commit is contained in:
parent
2321d717e5
commit
8c6445f67b
1 changed files with 20 additions and 7 deletions
|
|
@ -1,10 +1,23 @@
|
||||||
# Variables Generales
|
# ═══════════════════════════════════════════════════════════════
|
||||||
ODOO_CONTAINER=odoo-V18-mercier
|
# 0.variables.env - USINE_APPLICATIONS
|
||||||
POSTGRES_CONTAINER=postgres-5455-mercier
|
# ═══════════════════════════════════════════════════════════════
|
||||||
POSTGRESQL_PORT=5455
|
# ── Identite du projet ────────────────────────────────────────
|
||||||
POSTGRESQL_DB_NAME=mercier
|
export CLIENT=mercier
|
||||||
# Chemin vers odoo.conf (peut être relatif au dossier du script)
|
export ODOO_VERSION=18
|
||||||
ODOO_CONFIG_FILE=./odoo.conf
|
|
||||||
|
# ── PostgreSQL ────────────────────────────────────────────────
|
||||||
|
export POSTGRES_PORT=5455
|
||||||
|
export POSTGRES_DB="${CLIENT}"
|
||||||
|
export POSTGRES_USER=odoo
|
||||||
|
export POSTGRES_PASSWORD=odoo
|
||||||
|
export POSTGRES_CONTAINER="postgres-${POSTGRES_PORT}-${CLIENT}"
|
||||||
|
|
||||||
|
# ── Odoo ──────────────────────────────────────────────────────
|
||||||
|
export ODOO_HTTP_PORT=18069
|
||||||
|
export ODOO_CONTAINER="odoo-V${ODOO_VERSION}-${CLIENT}"
|
||||||
|
|
||||||
|
# ── Chemins ───────────────────────────────────────────────────
|
||||||
|
export ODOO_CONFIG_FILE=./odoo.conf
|
||||||
|
|
||||||
# Filestore (bind mount relatif OK, résolu en absolu par le script)
|
# Filestore (bind mount relatif OK, résolu en absolu par le script)
|
||||||
ODOO_FILESTORE_PATH=./odoo-filestore
|
ODOO_FILESTORE_PATH=./odoo-filestore
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue