Namespace
library
Image / Tag
mongo:7.0.29-windowsservercore-ltsc2022
Content Digest
sha256:810c2a27c504c76b45b024bf5d7a4368f2303ab2d1685f4c239b22ef24645816
Details
Created

2026-01-28 19:08:00 UTC

Size

2.29 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

3bbf7db85f94cdf291c79dd14bc1d0f16c31b276249007d8320c6d83e2c882ab

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.29


Layers

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

[#001] sha256:8810874280ba2ea58e95647ea717ead1a5fb07fea1d9160047d580e653fe9cbd - 14.12% (331 MB)

[#002] sha256:1497ed98c351aaba5e69e7428410b1b0fcf6e03c45915151606c81ff53f492b3 - 0.0% (1.29 KB)

[#003] sha256:5400f744f312439129f2e47cea1852f2fa58984705ec4960fbeec69493c756c4 - 0.0% (1.29 KB)

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

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

[#006] sha256:9b3ace11018ab9eac1b430ba3377c2613b2a1fa041aa7c0d9c4fc5d74510b9a9 - 25.21% (590 MB)

[#007] sha256:27b267adcbf4eaeba55c898da84acfc95dff921a67c909da892fb31d6426f73a - 0.0% (1.29 KB)

[#008] sha256:499d0719abf353a6e9ec313f8b4f0c4c64387916545e34f4e40a1450076fb89e - 0.0% (1.3 KB)

[#009] sha256:f14cdd89c2e695b91fa93a1d902317ee2cc2a1d40e22678700eca1c5ca6d1c9a - 0.0% (1.28 KB)


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

Apply image 10.0.20348.4294

2026-01-09 00:11:24 UTC

Install update 10.0.20348.4648

2026-01-28 19:02:55 UTC

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

2026-01-28 19:02:57 UTC

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

2026-01-28 19:02:58 UTC

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

2026-01-28 19:02:59 UTC

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

2026-01-28 19:07:57 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-01-28 19:07:58 UTC

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

2026-01-28 19:07:59 UTC

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

2026-01-28 19:08:00 UTC

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