[bitnami/odoo] Release 16.0.20230915-debian-11-r17 (#50998)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-10-04 07:50:50 +02:00 committed by GitHub
parent 0d09510466
commit 1ee1819c5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -7,10 +7,10 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-10-02T10:58:45Z" \
org.opencontainers.image.created="2023-10-04T03:14:49Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="16.0.20230915-debian-11-r16" \
org.opencontainers.image.ref.name="16.0.20230915-debian-11-r17" \
org.opencontainers.image.title="odoo" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="16.0.20230915"

View File

@ -42,6 +42,7 @@ odoo_env_vars=(
ODOO_DATABASE_NAME
ODOO_DATABASE_USER
ODOO_DATABASE_PASSWORD
ODOO_DATABASE_FILTER
SMTP_HOST
SMTP_PORT
ODOO_SMTP_PORT
@ -125,5 +126,6 @@ ODOO_DATABASE_USER="${ODOO_DATABASE_USER:-"${POSTGRESQL_DATABASE_USERNAME:-}"}"
export ODOO_DATABASE_USER="${ODOO_DATABASE_USER:-bn_odoo}" # only used during the first initialization
ODOO_DATABASE_PASSWORD="${ODOO_DATABASE_PASSWORD:-"${POSTGRESQL_DATABASE_PASSWORD:-}"}"
export ODOO_DATABASE_PASSWORD="${ODOO_DATABASE_PASSWORD:-}" # only used during the first initialization
export ODOO_DATABASE_FILTER="${ODOO_DATABASE_FILTER:-}" # only used during the first initialization
# Custom environment variables may be defined below

View File

@ -12,7 +12,7 @@ db_port = {{ODOO_DATABASE_PORT_NUMBER}}
; https://www.postgresql.org/docs/current/manage-ag-templatedbs.html
db_template = template1
db_user = {{ODOO_DATABASE_USER}}
dbfilter = .*
dbfilter = {{ODOO_DATABASE_FILTER}}
debug_mode = False
email_from = {{ODOO_EMAIL}}
http_port = {{ODOO_PORT_NUMBER}}