4.0.1-ol-7-r13 release
Fix IPv6 configuration when using persisted data
This commit is contained in:
parent
8726b832ff
commit
198ab5c14d
|
|
@ -1,4 +1,4 @@
|
|||
FROM bitnami/oraclelinux-extras:7-r75
|
||||
FROM bitnami/oraclelinux-extras:7-r77
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
||||
|
|
@ -6,13 +6,14 @@ ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
|||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages cyrus-sasl-lib glibc keyutils-libs krb5-libs libcom_err libcurl libgcc libidn libpcap libselinux libssh2 nspr nss nss-softokn-freebl nss-util openldap openssl-libs pcre zlib
|
||||
RUN bitnami-pkg unpack mongodb-4.0.1-1 --checksum 0b67a436e0403ddccfa94e8cd9137303d8d12d423149fb24cd7157dfc812066d
|
||||
RUN bitnami-pkg unpack mongodb-4.0.1-4 --checksum 335660a734b0b0ea4b78ae6ca0d056c5b5e83486b505daa8efa31cb8c8217a79
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="mongodb" \
|
||||
BITNAMI_IMAGE_VERSION="4.0.1-ol-7-r12" \
|
||||
BITNAMI_IMAGE_VERSION="4.0.1-ol-7-r13" \
|
||||
MONGODB_ADVERTISED_HOSTNAME="" \
|
||||
MONGODB_DATABASE="" \
|
||||
MONGODB_ENABLE_IPV6="yes" \
|
||||
MONGODB_PASSWORD="" \
|
||||
MONGODB_PRIMARY_HOST="" \
|
||||
MONGODB_PRIMARY_PORT_NUMBER="27017" \
|
||||
|
|
@ -28,5 +29,5 @@ ENV BITNAMI_APP_NAME="mongodb" \
|
|||
EXPOSE 27017
|
||||
|
||||
USER 1001
|
||||
ENTRYPOINT ["/app-entrypoint.sh"]
|
||||
CMD ["/run.sh"]
|
||||
ENTRYPOINT [ "/app-entrypoint.sh" ]
|
||||
CMD [ "/run.sh" ]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"advertisedHostname": "{{$global.env.MONGODB_ADVERTISED_HOSTNAME}}",
|
||||
"database": "{{$global.env.MONGODB_DATABASE}}",
|
||||
"enableIPv6": "{{$global.env.MONGODB_ENABLE_IPV6}}",
|
||||
"password": "{{$global.env.MONGODB_PASSWORD}}",
|
||||
"primaryHost": "{{$global.env.MONGODB_PRIMARY_HOST}}",
|
||||
"primaryPort": "{{$global.env.MONGODB_PRIMARY_PORT_NUMBER}}",
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
* [`4.1-ol-7`, `4.1.2-ol-7-r7` (4.1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.1.2-ol-7-r7/4.1/ol-7/Dockerfile)
|
||||
* [`4.1-debian-9`, `4.1.2-debian-9-r6`, `4.1`, `4.1.2`, `4.1.2-r6` (4.1/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.1.2-debian-9-r6/4.1/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.1-ol-7-r12` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.1-ol-7-r12/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.1-ol-7-r13` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.1-ol-7-r13/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-debian-9`, `4.0.1-debian-9-r13`, `4.0`, `4.0.1`, `4.0.1-r13`, `latest` (4.0/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.1-debian-9-r13/4.0/Dockerfile)
|
||||
* [`3.6-ol-7`, `3.6.7-ol-7-r1` (3.6/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.7-ol-7-r1/3.6/ol-7/Dockerfile)
|
||||
* [`3.6-debian-9`, `3.6.6-debian-9-r38`, `3.6`, `3.6.6`, `3.6.6-r38` (3.6/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.6-debian-9-r38/3.6/Dockerfile)
|
||||
|
|
|
|||
Loading…
Reference in New Issue