[bitnami/odoo] Release 16.0.20230915-debian-11-r16 (#50866)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-10-03 19:57:43 +02:00 committed by GitHub
parent 7d61196cc3
commit 8189798af3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 6 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-09-30T08:38:13Z" \
org.opencontainers.image.created="2023-10-02T10:58:45Z" \
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-r14" \
org.opencontainers.image.ref.name="16.0.20230915-debian-11-r16" \
org.opencontainers.image.title="odoo" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="16.0.20230915"

View File

@ -42,7 +42,6 @@ odoo_env_vars=(
ODOO_DATABASE_NAME
ODOO_DATABASE_USER
ODOO_DATABASE_PASSWORD
ODOO_DATABASE_FILTER
SMTP_HOST
SMTP_PORT
ODOO_SMTP_PORT
@ -95,7 +94,6 @@ export ODOO_LONGPOLLING_PORT_NUMBER="${ODOO_LONGPOLLING_PORT_NUMBER:-8072}" # on
export ODOO_SKIP_BOOTSTRAP="${ODOO_SKIP_BOOTSTRAP:-no}" # only used during the first initialization
export ODOO_SKIP_MODULES_UPDATE="${ODOO_SKIP_MODULES_UPDATE:-no}" # only used during the first initialization
export ODOO_LOAD_DEMO_DATA="${ODOO_LOAD_DEMO_DATA:-no}" # only used during the first initialization
export ODOO_DATABASE_FILTER="${ODOO_DATABASE_FILTER:-.*}"
# Odoo credentials
export ODOO_EMAIL="${ODOO_EMAIL:-user@example.com}" # only used during the first initialization

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 = {{ODOO_DATABASE_FILTER}}
dbfilter = .*
debug_mode = False
email_from = {{ODOO_EMAIL}}
http_port = {{ODOO_PORT_NUMBER}}

View File

@ -223,7 +223,7 @@ Available environment variables:
- `ODOO_DATABASE_PORT_NUMBER`: Port used by the PostgreSQL server. Default: **5432**
- `ODOO_DATABASE_ADMIN_USER`: Database admin user that Odoo will use to connect with the database. Default: **postgres**
- `ODOO_DATABASE_ADMIN_PASSWORD`: Database admin password that Odoo will use to connect with the database. No default.
- `ODOO_DATABASE_FILTER`: Apply a regex to filter a specific pattern or match for a database name: Default: .*
- `ODOO_DATABASE_FILTER`: Apply a regex to filter a specific pattern or match for a database name: Default: **.\***
- `ALLOW_EMPTY_PASSWORD`: It can be used to allow blank passwords. Default: **no**
#### Create a database for Odoo using postgresql-client