Namespace
library
Image / Tag
mongo:6.0.26-rc0-windowsservercore-ltsc2025
Content Digest
sha256:da7f84aab85510a76cfa4a4b60cbecb497bccc3376dec7015c4f3614422b3734
Details
Created

2025-08-12 23:40:17 UTC

Size

3.75 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

ed437d534ae2934870d2efe2d0e3fcb326a1367f28496c8ccf48697cd4ee5f2b

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

6.0.26-rc0


Layers

[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 55.02% (2.06 GB)

[#001] sha256:203c144449ed67b479a4424fa1d1138f1c8909f1e47a45a6500d4d7f7d058549 - 31.88% (1.2 GB)

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

[#003] sha256:466eb80f65f7d4d5f72b830384b7a4acc4deee450251c3d7a7bdd9e950ef53c3 - 0.0% (1.35 KB)

[#004] sha256:a0b5326477064d0f546e8557fd8d16db8229e9e882776ae6acc8ae66db87d4a6 - 0.0% (1.26 KB)

[#005] sha256:1df42ae850e4e236b5449f83127585f6f08c60f83cd3da26cd82c73d3e2366b0 - 0.0% (1.31 KB)

[#006] sha256:01a7e66de4f970649ae579d32ac47afe2e112e9febb5f1b0c97da8bc6d89c0f5 - 13.1% (503 MB)

[#007] sha256:06e74efae2d7db9ed35eaf56956523c721dc5b8878612a4e35cb55f0b2df4cdb - 0.0% (1.31 KB)

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

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


History
2024-12-08 22:41:37 UTC

Apply image 10.0.26100.2605

2025-08-10 03:12:45 UTC

Install update 10.0.26100.4946

2025-08-12 23:39:26 UTC

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

2025-08-12 23:39:27 UTC

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

2025-08-12 23:39:27 UTC

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

2025-08-12 23:39:28 UTC

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

2025-08-12 23:40:16 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-08-12 23:40:16 UTC

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

2025-08-12 23:40:17 UTC

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

2025-08-12 23:40:17 UTC

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