Namespace
library
Image / Tag
mongo:7.0-rc-windowsservercore-ltsc2025
Content Digest
sha256:79de7ab9b2cc5f01748285791eb154554c95f321b3d8ebb01530989a2d78226c
Details
Created

2026-04-17 00:03:47 UTC

Size

2.56 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

1f04282b3a57ede7afef7aef29be177e0ea66a4f36a166e0acdec4bfd7d45eca

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.32-rc2


Layers

[#000] sha256:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 55.3% (1.42 GB)

[#001] sha256:3642e4b8bb65ad3768f9f74a0dc48bb2e3294779b5d51573a234bfbe4f65324e - 22.04% (579 MB)

[#002] sha256:2d65da7a61fe3d4fa71ebf92c7dd284b3537f5bb62ebde748369dbfec7ff0c6f - 0.0% (1.29 KB)

[#003] sha256:a8613bd61baa5ba5475da697f8332eaa6bdda866acb0b7d7669f2ff95536beb8 - 0.0% (1.28 KB)

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

[#005] sha256:2c5e6367bac355113f779de53f30946e849c30c4fc2db08cfd0e08263654f51c - 0.0% (1.27 KB)

[#006] sha256:76f56be27c1b36187aca3884e4f40abd5568c972bf41a942d96693e7acfff700 - 22.66% (595 MB)

[#007] sha256:c97f430a69c64293276efbc6615b692769310276631b3d07e13b6d0be5e5226b - 0.0% (1.3 KB)

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

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


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-04-13 07:00:46 UTC

Install update 10.0.26100.32690

2026-04-17 00:00:42 UTC

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

2026-04-17 00:00:43 UTC

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

2026-04-17 00:00:44 UTC

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

2026-04-17 00:00:46 UTC

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

2026-04-17 00:03:44 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-04-17 00:03:45 UTC

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

2026-04-17 00:03:46 UTC

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

2026-04-17 00:03:47 UTC

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