From c5ba3b9ff7a726e4757c6e5eca941ef108eb05bf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Jul 2018 03:21:54 +0000 Subject: [PATCH] 4.1.1-debian-9-r13 release --- bitnami/mongodb/4/debian-9/Dockerfile | 2 +- bitnami/mongodb/README.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/bitnami/mongodb/4/debian-9/Dockerfile b/bitnami/mongodb/4/debian-9/Dockerfile index 6bb788580d69..6184b5bc54a2 100644 --- a/bitnami/mongodb/4/debian-9/Dockerfile +++ b/bitnami/mongodb/4/debian-9/Dockerfile @@ -10,7 +10,7 @@ RUN bitnami-pkg unpack mongodb-4.1.1-3 --checksum 412cb2b47ef6735250b370b37bf46d COPY rootfs / ENV BITNAMI_APP_NAME="mongodb" \ - BITNAMI_IMAGE_VERSION="4.1.1-debian-9-r12" \ + BITNAMI_IMAGE_VERSION="4.1.1-debian-9-r13" \ MONGODB_ADVERTISED_HOSTNAME="" \ MONGODB_DATABASE="" \ MONGODB_PASSWORD="" \ diff --git a/bitnami/mongodb/README.md b/bitnami/mongodb/README.md index 5a816070886e..26711a109b18 100644 --- a/bitnami/mongodb/README.md +++ b/bitnami/mongodb/README.md @@ -31,7 +31,7 @@ $ docker-compose up -d * [`4-ol-7`, `4.1.1-ol-7-r11` (4/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.1.1-ol-7-r11/4/ol-7/Dockerfile) -* [`4-debian-9`, `4.1.1-debian-9-r12`, `4`, `4.1.1`, `4.1.1-r12` (4/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.1.1-debian-9-r12/4/Dockerfile) +* [`4-debian-9`, `4.1.1-debian-9-r13`, `4`, `4.1.1`, `4.1.1-r13` (4/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.1.1-debian-9-r13/4/Dockerfile) * [`3.6-ol-7`, `3.6.6-ol-7-r17` (3.6/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.6-ol-7-r17/3.6/ol-7/Dockerfile) * [`3.6-debian-9`, `3.6.6-debian-9-r19`, `3.6`, `3.6.6`, `3.6.6-r19`, `latest` (3.6/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.6-debian-9-r19/3.6/Dockerfile) @@ -540,6 +540,10 @@ $ docker-compose up mongodb # Notable Changes +## 3.6.6-r16 and 4.1.1-r9 + +- The MongoDB container has been migrated to a non-root user approach. Previously the container ran as the `root` user and the MongoDB daemon was started as the `mongo` user. From now on, both the container and the MongoDB daemon run as user `1001`. As a consequence, the data directory must be writable by that user. You can revert this behavior by changing `USER 1001` to `USER root` in the Dockerfile. + ## 3.2.7-r5 - `MONGODB_USER` parameter has been renamed to `MONGODB_USERNAME`.