13.0.20210810-debian-10-r3 release
This commit is contained in:
parent
ae7a6bb8f3
commit
42250328a2
|
|
@ -24,7 +24,7 @@ RUN curl -sLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/odoo/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="odoo" \
|
||||
BITNAMI_IMAGE_VERSION="13.0.20210810-debian-10-r2" \
|
||||
BITNAMI_IMAGE_VERSION="13.0.20210810-debian-10-r3" \
|
||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/common/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/node/bin:/opt/bitnami/odoo/bin:$PATH" \
|
||||
POSTGRESQL_CLIENT_CREATE_DATABASE_NAME="" \
|
||||
POSTGRESQL_CLIENT_CREATE_DATABASE_PASSWORD="" \
|
||||
|
|
|
|||
|
|
@ -91,6 +91,22 @@ is_true_false_value() {
|
|||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
# Check if the provided argument is a boolean 1/0 value
|
||||
# Arguments:
|
||||
# $1 - Value to check
|
||||
# Returns:
|
||||
# Boolean
|
||||
#########################
|
||||
is_1_0_value() {
|
||||
local -r bool="${1:-}"
|
||||
if [[ "$bool" =~ ^[10]$ ]]; then
|
||||
true
|
||||
else
|
||||
false
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
# Check if the provided argument is an empty string or not defined
|
||||
# Arguments:
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
- [`14`, `14-debian-10`, `14.0.20210810`, `14.0.20210810-debian-10-r2`, `latest` (14/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/14.0.20210810-debian-10-r2/14/debian-10/Dockerfile)
|
||||
- [`13`, `13-debian-10`, `13.0.20210810`, `13.0.20210810-debian-10-r2` (13/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/13.0.20210810-debian-10-r2/13/debian-10/Dockerfile)
|
||||
- [`13`, `13-debian-10`, `13.0.20210810`, `13.0.20210810-debian-10-r3` (13/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/13.0.20210810-debian-10-r3/13/debian-10/Dockerfile)
|
||||
- [`12`, `12-debian-10`, `12.0.20210715`, `12.0.20210715-debian-10-r26` (12/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/12.0.20210715-debian-10-r26/12/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/odoo GitHub repo](https://github.com/bitnami/bitnami-docker-odoo).
|
||||
|
|
|
|||
Loading…
Reference in New Issue