Namespace
library
Image / Tag
mongo:6.0.28-windowsservercore-ltsc2022
Content Digest
sha256:8205980afa8b2ad3c573d4a32becb699a9e5305335077223705252c8cc064090
Details
Created

2026-05-15 16:51:10 UTC

Size

2.47 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

49e24243affae70b9c80112d0552d14454f5db1219ed2f50abd02d9a81ce95f8

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

6.0.28


Layers

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

[#001] sha256:857865ad3eca4da109d969134a9cab7225d9de49597914ae325d43661900f513 - 23.9% (604 MB)

[#002] sha256:6672749c865ce96027fa4bf34f88e7b77d6b0280824a7f3181f99cf91ee9431b - 0.0% (1.3 KB)

[#003] sha256:98cdae779eee88f161dcad45460570e744bfad3a365c05e0c13450f973a465fc - 0.0% (1.26 KB)

[#004] sha256:e6f7c1006c70716b76bfbdcf34435a1bfa632b564c9a4ac50cde4e451838354f - 0.0% (1.28 KB)

[#005] sha256:dee6876e3a5b8b2d4e91e74044523d70eeb9785f2aa81f1f0f9c8c35967cdb4b - 0.0% (1.26 KB)

[#006] sha256:ea5244e3e620b6587a768ff5c75ff8fddea59096657eff0ac24556e2ef952f35 - 19.91% (503 MB)

[#007] sha256:179809200672e57b35a78552fc7ab350d29e659421faefba2816db928ac7801d - 0.0% (1.25 KB)

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

[#009] sha256:2ec7390ce13abf860fbef91c161dc293e5fb1a6cbbfed585e9b96f61a8896ca0 - 0.0% (1.29 KB)


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

Apply image 10.0.20348.4294

2026-05-07 03:49:54 UTC

Install update 10.0.20348.5139

2026-05-15 16:48:51 UTC

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

2026-05-15 16:48:54 UTC

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

2026-05-15 16:48:55 UTC

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

2026-05-15 16:48:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_SHA256=49e24243affae70b9c80112d0552d14454f5db1219ed2f50abd02d9a81ce95f8

2026-05-15 16:51:08 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.';

2026-05-15 16:51:09 UTC

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

2026-05-15 16:51:09 UTC

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

2026-05-15 16:51:10 UTC

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