Namespace
library
Image / Tag
mongo:7.0.35-windowsservercore-ltsc2022
Content Digest
sha256:af98ce6263b04b6e2b2a442a2d0bbace8ce1c1612dcf8a9fed10a3316e4c989c
Details
Created

2026-06-10 20:19:39 UTC

Size

2.57 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:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 54.03% (1.39 GB)

[#001] sha256:6897a04901ec162be0eabd7eb636b5ac50d6e37c880f1db618610f2d777b1ce6 - 23.34% (613 MB)

[#002] sha256:8515cc2fb972a30638ace61dde527801334300fbbe671a22c36efd944231771f - 0.0% (1.29 KB)

[#003] sha256:1f98f8a53cc21530a79a917e5ecfe8d3dfda36755e9a8d8ca09e8aed4521addf - 0.0% (1.31 KB)

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

[#005] sha256:d9b6b11d848daeb0e5bfc44295c809da36ba20cb952e102739dacdd500d8d143 - 0.0% (1.29 KB)

[#006] sha256:45238535a0bf0d6d5a4589534219b9951e5325fc0784cc6e2aa68b7817c516d0 - 22.63% (595 MB)

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

[#008] sha256:1b86a7024600ed43b801c6111b66773360627f0944ceac805b1e43bcfc1e7c2d - 0.0% (1.29 KB)

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


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

Apply image 10.0.20348.4294

2026-06-07 06:43:23 UTC

Install update 10.0.20348.5256

2026-06-10 20:16:53 UTC

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

2026-06-10 20:16:56 UTC

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

2026-06-10 20:16:57 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:58 UTC

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

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

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

2026-06-10 20:19:38 UTC

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

2026-06-10 20:19:39 UTC

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