Namespace
library
Image / Tag
mongo:7.0.35-windowsservercore-ltsc2025
Content Digest
sha256:4f7ed5f6ac58e01f9592e85ed72ad2f9e07ecf1f532290eb9c830c5f5e7692a1
Details
Created

2026-06-10 20:19:32 UTC

Size

2.7 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

d2d31bac1d7d75d84b4024425c344e9dda59fb7f761eb9b47a6ca16aee62b8f6

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.35


Layers

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

[#001] sha256:2ee71d57b2226db82d002abc39a97b7dd144f007db435566364a0285bf115b83 - 26.05% (721 MB)

[#002] sha256:87ba3f6f2b61eb210a15cac0b9d9bcebf68cdb8d9d5052cc401afe7df57b4850 - 0.0% (1.26 KB)

[#003] sha256:20e743d48a2c2606aefe07df1b638dabdee19af73d319362d71fcab079239b7f - 0.0% (1.25 KB)

[#004] sha256:fcd905c2487dd5ae04cb5145aca5fe350d841e8e8c0d0273e960955d416b1e1f - 0.0% (1.25 KB)

[#005] sha256:060bfecc0bce3cbf1890ad36d3b362e569e0e65a1e58d67b19a140618fd78a7f - 0.0% (1.23 KB)

[#006] sha256:2a88f8c31e8808bf2451b093b044569f3263aa112ce21681010ad8aaed0df72c - 21.49% (595 MB)

[#007] sha256:881fb32c83f8d91c76a29d6ccc5b8391cf8a74f32b05f18a4c605ffaa7da8e30 - 0.0% (1.26 KB)

[#008] sha256:cf63ad919b435d0473d8eabdba40f7fcfb488f8f5a4f90c76056daff3fce1489 - 0.0% (1.23 KB)

[#009] sha256:163367bb162aa29b00e222c6ccee1eedf724ccb3fded6089d5c0516914df94dd - 0.0% (1.26 KB)


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

Apply image 10.0.26100.32230

2026-06-07 07:36:39 UTC

Install update 10.0.26100.32995

2026-06-10 20:16:40 UTC

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

2026-06-10 20:16:42 UTC

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

2026-06-10 20:16:43 UTC

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

2026-06-10 20:16:44 UTC

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

2026-06-10 20:19:30 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-06-10 20:19:30 UTC

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

2026-06-10 20:19:31 UTC

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

2026-06-10 20:19:32 UTC

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