13.0.20191010-ol-7-r0 release

This commit is contained in:
Bitnami Bot 2019-10-16 13:10:50 +00:00
parent 9baa86462a
commit 98d6f348a3
5 changed files with 79 additions and 1 deletions

View File

@ -0,0 +1,30 @@
FROM bitnami/oraclelinux-extras:7-r498
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages bzip2-libs cyrus-sasl-lib glibc keyutils-libs krb5-libs libcom_err libedit libffi libgcc libgcrypt libgpg-error libselinux libstdc++ libuuid libxml2 libxslt ncurses-libs nspr nss nss-softokn-freebl nss-util openldap openssl-libs pcre readline sqlite xz-libs zlib
RUN bitnami-pkg install python-3.6.9-1 --checksum 365caa442a21668d515e8edfd9f0de58331e3f8b3b27b1e88820dbad10ccc193
RUN bitnami-pkg install postgresql-client-11.5.0-1 --checksum d2d9a6bb144786c32d7ffa13bb1cd525c658d436dec0b5e92936c7f202dae549
RUN bitnami-pkg install node-7.10.1-1 --checksum c58b53a2ea5feafe1e0f0ef4b990d9ff55c37089ff5fba12e1938183e8a81a2f
RUN bitnami-pkg unpack odoo-13.0.20191010-0 --checksum 4b02571131cee2cea8469925d8e914dc97b3b1d15bdf5a50cac35d6e2c198fa8
COPY rootfs /
ENV BITNAMI_APP_NAME="odoo" \
BITNAMI_IMAGE_VERSION="13.0.20191010-ol-7-r0" \
ODOO_EMAIL="user@example.com" \
ODOO_PASSWORD="bitnami" \
PATH="/opt/bitnami/python/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/node/bin:$PATH" \
POSTGRESQL_HOST="postgresql" \
POSTGRESQL_PASSWORD="" \
POSTGRESQL_PORT_NUMBER="5432" \
POSTGRESQL_USER="postgres" \
SMTP_HOST="" \
SMTP_PASSWORD="" \
SMTP_PORT="" \
SMTP_PROTOCOL="" \
SMTP_USER=""
EXPOSE 8069 8071
ENTRYPOINT [ "/app-entrypoint.sh" ]
CMD [ "nami", "start", "--foreground", "odoo" ]

View File

@ -0,0 +1,22 @@
version: '2'
services:
postgresql:
image: 'bitnami/postgresql:11-ol-7'
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- 'postgresql_data:/bitnami/postgresql'
odoo:
image: 'bitnami/odoo:13-ol-7'
ports:
- '80:8069'
- '443:8071'
volumes:
- 'odoo_data:/bitnami'
depends_on:
- postgresql
volumes:
postgresql_data:
driver: local
odoo_data:
driver: local

View File

@ -0,0 +1,13 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize odoo
info "Starting odoo... "
fi
exec tini -- "$@"

View File

@ -0,0 +1,13 @@
{
"databaseAdminPassword": "{{$global.env.POSTGRESQL_PASSWORD}}",
"databaseAdminUser": "{{$global.env.POSTGRESQL_USER}}",
"databaseServerHost": "{{$global.env.POSTGRESQL_HOST}}",
"databaseServerPort": "{{$global.env.POSTGRESQL_PORT_NUMBER}}",
"email": "{{$global.env.ODOO_EMAIL}}",
"password": "{{$global.env.ODOO_PASSWORD}}",
"smtpHost": "{{$global.env.SMTP_HOST}}",
"smtpPassword": "{{$global.env.SMTP_PASSWORD}}",
"smtpPort": "{{$global.env.SMTP_PORT}}",
"smtpProtocol": "{{$global.env.SMTP_PROTOCOL}}",
"smtpUser": "{{$global.env.SMTP_USER}}"
}

View File

@ -38,12 +38,12 @@ Bitnami containers can be used with [Kubeapps](https://kubeapps.com/) for deploy
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/). Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
* [`13-ol-7`, `13.0.20191010-ol-7-r0` (13/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/13.0.20191010-ol-7-r0/13/ol-7/Dockerfile)
* [`13-debian-9`, `13.0.20191010-debian-9-r0`, `13`, `13.0.20191010`, `13.0.20191010-r0`, `latest` (13/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/13.0.20191010-debian-9-r0/13/debian-9/Dockerfile) * [`13-debian-9`, `13.0.20191010-debian-9-r0`, `13`, `13.0.20191010`, `13.0.20191010-r0`, `latest` (13/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/13.0.20191010-debian-9-r0/13/debian-9/Dockerfile)
* [`12-ol-7`, `12.0.20191015-ol-7-r1` (12/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/12.0.20191015-ol-7-r1/12/ol-7/Dockerfile) * [`12-ol-7`, `12.0.20191015-ol-7-r1` (12/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/12.0.20191015-ol-7-r1/12/ol-7/Dockerfile)
* [`12-debian-9`, `12.0.20191015-debian-9-r0`, `12`, `12.0.20191015`, `12.0.20191015-r0` (12/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/12.0.20191015-debian-9-r0/12/debian-9/Dockerfile) * [`12-debian-9`, `12.0.20191015-debian-9-r0`, `12`, `12.0.20191015`, `12.0.20191015-r0` (12/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/12.0.20191015-debian-9-r0/12/debian-9/Dockerfile)
* [`11-ol-7`, `11.0.20191015-ol-7-r1` (11/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/11.0.20191015-ol-7-r1/11/ol-7/Dockerfile) * [`11-ol-7`, `11.0.20191015-ol-7-r1` (11/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/11.0.20191015-ol-7-r1/11/ol-7/Dockerfile)
* [`11-debian-9`, `11.0.20191015-debian-9-r1`, `11`, `11.0.20191015`, `11.0.20191015-r1` (11/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/11.0.20191015-debian-9-r1/11/debian-9/Dockerfile) * [`11-debian-9`, `11.0.20191015-debian-9-r1`, `11`, `11.0.20191015`, `11.0.20191015-r1` (11/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/11.0.20191015-debian-9-r1/11/debian-9/Dockerfile)
* [`13-ol-7`, `0.0.0-ol-7-r0` (13/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/0.0.0-ol-7-r0/13/ol-7/Dockerfile)
Subscribe to project updates by watching the [bitnami/odoo GitHub repo](https://github.com/bitnami/bitnami-docker-odoo). Subscribe to project updates by watching the [bitnami/odoo GitHub repo](https://github.com/bitnami/bitnami-docker-odoo).