Namespace
library
Image / Tag
mongo:6.0.27-windowsservercore-ltsc2022
Content Digest
sha256:62880df3b0f2e4abd90c994cbf928c98d6c564a8f06bd11b35ed86cb4be754df
Details
Created

2025-12-29 20:17:03 UTC

Size

2.15 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

7c070bb50f184ba20dc0a8e57f13ee9f00ee071fba5777e35b173ec1defc3bd4

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.27-signed.msi

MONGO_VERSION

6.0.27


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 64.53% (1.39 GB)

[#001] sha256:1fc19ec18c41e4c8edf1a76eecae2be22e29445f11ee586523f59e36de40aebb - 12.61% (277 MB)

[#002] sha256:610c3903bc01026ead17cd5c540761b80b2e381c9cfd6ec0e8d5eacd526ea0e5 - 0.0% (1.29 KB)

[#003] sha256:4a4a1887b8d66f03e1089cf5b144f0228293eeb5f9986d89b91a642ebd5d5383 - 0.0% (1.29 KB)

[#004] sha256:dc01a0c98c3c588ca98ce90ae41045b2b0a75b634693de17792200a47a5e4ddc - 0.0% (1.29 KB)

[#005] sha256:ab13d6853f0c46377f8e9bcec0d667300310237fadaa08d715e6ecb61302c107 - 0.0% (1.3 KB)

[#006] sha256:a9dd63a46db8041001ad688bdb06456dcda3aa982b3bbf877a75b18f4f304678 - 22.86% (503 MB)

[#007] sha256:5c1f9f0f6b5289be38c204bb894f963094855a53babc575ffe0dbd02927ecbff - 0.0% (1.28 KB)

[#008] sha256:a4d0e42f2a6908f542b44d03a749172b13c06fc729d95119a2c745b8c6135d03 - 0.0% (1.29 KB)

[#009] sha256:c4ebad5a753ebe2b69990cf84ca7b7568e2b68908c2dddd2370306eb3e6f6a41 - 0.0% (1.27 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2025-12-05 18:19:35 UTC

Install update 10.0.20348.4529

2025-12-29 20:11:57 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop';]

2025-12-29 20:11:59 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_VERSION=6.0.27

2025-12-29 20:12:00 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_URL=https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.27-signed.msi

2025-12-29 20:12:01 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_SHA256=7c070bb50f184ba20dc0a8e57f13ee9f00ee071fba5777e35b173ec1defc3bd4

2025-12-29 20:16:59 UTC

powershell -Command $ErrorActionPreference = 'Stop'; Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile($env:MONGO_DOWNLOAD_URL, 'mongo.msi'); if ($env:MONGO_DOWNLOAD_SHA256) { Write-Host ('Verifying sha256 ({0}) ...' -f $env:MONGO_DOWNLOAD_SHA256); if ((Get-FileHash mongo.msi -Algorithm sha256).Hash -ne $env:MONGO_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; }; Write-Host 'Installing ...'; Start-Process msiexec -Wait -ArgumentList @( '/i', 'mongo.msi', '/quiet', '/qn', '/l*v', 'install.log', 'INSTALLLOCATION=C:\mongodb', 'ADDLOCAL=MiscellaneousTools,Router,ServerNoService' ); if (-Not (Test-Path C:\mongodb\bin\mongod.exe -PathType Leaf)) { Write-Host 'Installer failed!'; Get-Content install.log; exit 1; }; Remove-Item install.log; $env:PATH = 'C:\mongodb\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' mongod --version'; mongod --version; Write-Host 'Removing ...'; Remove-Item C:\windows\installer\*.msi -Force; Remove-Item mongo.msi -Force; Write-Host 'Complete.';

2025-12-29 20:17:00 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) VOLUME [C:\data\db C:\data\configdb]

2025-12-29 20:17:02 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) EXPOSE 27017

2025-12-29 20:17:03 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) CMD ["mongod" "--bind_ip_all"]