13.0.20191010-debian-9-r0 release
This commit is contained in:
parent
7db2776358
commit
9baa86462a
|
|
@ -0,0 +1,30 @@
|
|||
FROM bitnami/minideb-extras:stretch-r493
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ghostscript imagemagick libbsd0 libbz2-1.0 libc6 libedit2 libffi6 libgcc1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libhogweed4 libicu57 libidn11 libldap-2.4-2 liblzma5 libncurses5 libnettle6 libp11-kit0 libpq5 libreadline7 libsasl2-2 libsqlite3-0 libssl1.1 libstdc++6 libtasn1-6 libtinfo5 libuuid1 libxml2 libxslt1.1 zlib1g
|
||||
RUN bitnami-pkg install python-3.6.9-1 --checksum 16bf895318d5581937b3b5e73b55d7c7180a8ef42af8d0a8d4dd010bd0a0408d
|
||||
RUN bitnami-pkg install postgresql-client-11.5.0-1 --checksum be6c93f500df6d1bbffe76a777ba862ed76dc5286a9443d271a950f6e557e869
|
||||
RUN bitnami-pkg install node-7.10.1-1 --checksum 53362288e961d298a724353710a31901d4cb8237894a26a2f676b35450c02975
|
||||
RUN bitnami-pkg unpack odoo-13.0.20191010-0 --checksum 10ad67ddf0a5a861280135afddbb228aa7253f31f512b751325a6308ed3c215a
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="odoo" \
|
||||
BITNAMI_IMAGE_VERSION="13.0.20191010-debian-9-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" ]
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
version: '2'
|
||||
services:
|
||||
postgresql:
|
||||
image: 'bitnami/postgresql:11'
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
volumes:
|
||||
- 'postgresql_data:/bitnami/postgresql'
|
||||
odoo:
|
||||
image: 'bitnami/odoo:13'
|
||||
ports:
|
||||
- '80:8069'
|
||||
- '443:8071'
|
||||
volumes:
|
||||
- 'odoo_data:/bitnami'
|
||||
depends_on:
|
||||
- postgresql
|
||||
volumes:
|
||||
postgresql_data:
|
||||
driver: local
|
||||
odoo_data:
|
||||
driver: local
|
||||
|
|
@ -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 -- "$@"
|
||||
|
|
@ -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}}"
|
||||
}
|
||||
|
|
@ -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/).
|
||||
|
||||
|
||||
* [`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-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-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)
|
||||
* [`13-debian-9`, `0.0.0-debian-9-r0`, `13`, `0.0.0`, `0.0.0-r0`, `latest` (13/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-odoo/blob/0.0.0-debian-9-r0/13/debian-9/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/odoo GitHub repo](https://github.com/bitnami/bitnami-docker-odoo).
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ services:
|
|||
volumes:
|
||||
- 'postgresql_data:/bitnami/postgresql'
|
||||
odoo:
|
||||
image: 'bitnami/odoo:12'
|
||||
image: 'bitnami/odoo:13'
|
||||
ports:
|
||||
- '80:8069'
|
||||
- '443:8071'
|
||||
|
|
|
|||
Loading…
Reference in New Issue