From c6713cbc8fa45598c23446993c6a01c95150b785 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 18 Apr 2024 03:01:32 -0700 Subject: [PATCH] Update 6.0 to 6.0.15 --- 6.0/Dockerfile | 4 ++-- 6.0/windows/nanoserver-1809/Dockerfile | 8 ++++---- 6.0/windows/nanoserver-ltsc2022/Dockerfile | 8 ++++---- 6.0/windows/windowsservercore-1809/Dockerfile | 8 ++++---- 6.0/windows/windowsservercore-ltsc2022/Dockerfile | 8 ++++---- versions.json | 12 ++++++------ 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/6.0/Dockerfile b/6.0/Dockerfile index 903571ee16..8b5fd2ff0e 100644 --- a/6.0/Dockerfile +++ b/6.0/Dockerfile @@ -87,8 +87,8 @@ ENV MONGO_MAJOR 6.0 RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.asc ] http://$MONGO_REPO/apt/ubuntu jammy/${MONGO_PACKAGE%-unstable}/$MONGO_MAJOR multiverse" | tee "/etc/apt/sources.list.d/${MONGO_PACKAGE%-unstable}.list" # https://docs.mongodb.org/master/release-notes/6.0/ -ENV MONGO_VERSION 6.0.14 -# 02/20/2024, https://github.com/mongodb/mongo/tree/25225db95574916fecab3af75b184409f8713aef +ENV MONGO_VERSION 6.0.15 +# 04/15/2024, https://github.com/mongodb/mongo/tree/7494119c41ca4e13b493e9f048df4032164e860e RUN set -x \ # installing "mongodb-enterprise" pulls in "tzdata" which prompts for input diff --git a/6.0/windows/nanoserver-1809/Dockerfile b/6.0/windows/nanoserver-1809/Dockerfile index 5e9e54d89a..c2c818f906 100644 --- a/6.0/windows/nanoserver-1809/Dockerfile +++ b/6.0/windows/nanoserver-1809/Dockerfile @@ -14,17 +14,17 @@ RUN setx /m PATH "C:\mongodb\bin;%PATH%" USER ContainerUser # doing this first to share cache across versions more aggressively -COPY --from=mongo:6.0.14-windowsservercore-1809 \ +COPY --from=mongo:6.0.15-windowsservercore-1809 \ C:\\Windows\\System32\\msvcp140.dll \ C:\\Windows\\System32\\vcruntime140.dll \ C:\\Windows\\System32\\vcruntime140_1.dll \ C:\\Windows\\System32\\ # https://docs.mongodb.org/master/release-notes/6.0/ -ENV MONGO_VERSION 6.0.14 -# 02/20/2024, https://github.com/mongodb/mongo/tree/25225db95574916fecab3af75b184409f8713aef +ENV MONGO_VERSION 6.0.15 +# 04/15/2024, https://github.com/mongodb/mongo/tree/7494119c41ca4e13b493e9f048df4032164e860e -COPY --from=mongo:6.0.14-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:6.0.15-windowsservercore-1809 C:\\mongodb C:\\mongodb RUN mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/6.0/windows/nanoserver-ltsc2022/Dockerfile b/6.0/windows/nanoserver-ltsc2022/Dockerfile index 263ba2de4a..6a9a7a4662 100644 --- a/6.0/windows/nanoserver-ltsc2022/Dockerfile +++ b/6.0/windows/nanoserver-ltsc2022/Dockerfile @@ -14,17 +14,17 @@ RUN setx /m PATH "C:\mongodb\bin;%PATH%" USER ContainerUser # doing this first to share cache across versions more aggressively -COPY --from=mongo:6.0.14-windowsservercore-ltsc2022 \ +COPY --from=mongo:6.0.15-windowsservercore-ltsc2022 \ C:\\Windows\\System32\\msvcp140.dll \ C:\\Windows\\System32\\vcruntime140.dll \ C:\\Windows\\System32\\vcruntime140_1.dll \ C:\\Windows\\System32\\ # https://docs.mongodb.org/master/release-notes/6.0/ -ENV MONGO_VERSION 6.0.14 -# 02/20/2024, https://github.com/mongodb/mongo/tree/25225db95574916fecab3af75b184409f8713aef +ENV MONGO_VERSION 6.0.15 +# 04/15/2024, https://github.com/mongodb/mongo/tree/7494119c41ca4e13b493e9f048df4032164e860e -COPY --from=mongo:6.0.14-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:6.0.15-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb RUN mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/6.0/windows/windowsservercore-1809/Dockerfile b/6.0/windows/windowsservercore-1809/Dockerfile index 44b252a37d..e510b575db 100644 --- a/6.0/windows/windowsservercore-1809/Dockerfile +++ b/6.0/windows/windowsservercore-1809/Dockerfile @@ -9,11 +9,11 @@ FROM mcr.microsoft.com/windows/servercore:1809 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"] # https://docs.mongodb.org/master/release-notes/6.0/ -ENV MONGO_VERSION 6.0.14 -# 02/20/2024, https://github.com/mongodb/mongo/tree/25225db95574916fecab3af75b184409f8713aef +ENV MONGO_VERSION 6.0.15 +# 04/15/2024, https://github.com/mongodb/mongo/tree/7494119c41ca4e13b493e9f048df4032164e860e -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.14-signed.msi -ENV MONGO_DOWNLOAD_SHA256=871a352e6eb31f2d4d74816b6511cc350697c2004580f79f652f1a9237ea15c8 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.15-signed.msi +ENV MONGO_DOWNLOAD_SHA256=a59408edea70438c1c9793ecdbc8b2111e44f10dd90f1ed0d2cc8071ae1cc95f RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ diff --git a/6.0/windows/windowsservercore-ltsc2022/Dockerfile b/6.0/windows/windowsservercore-ltsc2022/Dockerfile index 09bb0335a7..4fecf16384 100644 --- a/6.0/windows/windowsservercore-ltsc2022/Dockerfile +++ b/6.0/windows/windowsservercore-ltsc2022/Dockerfile @@ -9,11 +9,11 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"] # https://docs.mongodb.org/master/release-notes/6.0/ -ENV MONGO_VERSION 6.0.14 -# 02/20/2024, https://github.com/mongodb/mongo/tree/25225db95574916fecab3af75b184409f8713aef +ENV MONGO_VERSION 6.0.15 +# 04/15/2024, https://github.com/mongodb/mongo/tree/7494119c41ca4e13b493e9f048df4032164e860e -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.14-signed.msi -ENV MONGO_DOWNLOAD_SHA256=871a352e6eb31f2d4d74816b6511cc350697c2004580f79f652f1a9237ea15c8 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.15-signed.msi +ENV MONGO_DOWNLOAD_SHA256=a59408edea70438c1c9793ecdbc8b2111e44f10dd90f1ed0d2cc8071ae1cc95f RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ diff --git a/versions.json b/versions.json index 673246057b..703a356851 100644 --- a/versions.json +++ b/versions.json @@ -113,9 +113,9 @@ }, "5.0-rc": null, "6.0": { - "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%226.0.14%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "02/20/2024", - "githash": "25225db95574916fecab3af75b184409f8713aef", + "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%226.0.15%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", + "date": "04/15/2024", + "githash": "7494119c41ca4e13b493e9f048df4032164e860e", "linux": "ubuntu2204", "notes": "https://docs.mongodb.org/master/release-notes/6.0/", "pgp": [ @@ -166,8 +166,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.14-signed.msi", - "sha256": "871a352e6eb31f2d4d74816b6511cc350697c2004580f79f652f1a9237ea15c8", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.15-signed.msi", + "sha256": "a59408edea70438c1c9793ecdbc8b2111e44f10dd90f1ed0d2cc8071ae1cc95f", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -176,7 +176,7 @@ ] } }, - "version": "6.0.14" + "version": "6.0.15" }, "6.0-rc": { "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%226.0.15%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC",