Namespace
library
Image / Tag
mongo:7.0.37-windowsservercore-ltsc2025
Content Digest
sha256:f20d83264f24253baa5526973af2f17cd6814231a8f4fce4a58035afc5002740
Details
Created

2026-07-15 23:17:05 UTC

Size

2.77 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

110a4774e93dd3dd253725f18bc87b77468521875d7448ca5f79fb1d5045cedc

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.37


Layers

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

[#001] sha256:e24b28706e4e5f31fae7935e5a79e6df5d7a2eb3e69c8c19ca723f41f0b45f6f - 27.93% (793 MB)

[#002] sha256:47820699bdf10a38e4b93c6e069768c2e1a4b714330108539caf1b856cced4a9 - 0.0% (1.23 KB)

[#003] sha256:75ad02006e0110cbf18ddb2b584532591211b8e1ad6c89c9f5a4cbbf7e6f3a0d - 0.0% (1.25 KB)

[#004] sha256:5c938ff733a29f77ca44af9cb68856ce5524bd88d05839c9c7f4590624ac67a2 - 0.0% (1.27 KB)

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

[#006] sha256:debc6126646be8a0c553360aac604f9d6e0bd0eef2fd492260778be91406fbe2 - 20.94% (595 MB)

[#007] sha256:3f5440ce8f18be3b6125ec21386864a7bf61f7daa07ae7bc2f222a6648978eaf - 0.0% (1.25 KB)

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

[#009] sha256:00204cdac8a5f6e711df076f3b8d251fa4d06d32675a961d07bfe6a92385da42 - 0.0% (1.26 KB)


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

Apply image 10.0.26100.32230

2026-07-11 23:02:35 UTC

Install update 10.0.26100.33158

2026-07-15 23:15:04 UTC

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

2026-07-15 23:15:05 UTC

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

2026-07-15 23:15:05 UTC

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

2026-07-15 23:15:06 UTC

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

2026-07-15 23:17:03 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-07-15 23:17:04 UTC

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

2026-07-15 23:17:05 UTC

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

2026-07-15 23:17:05 UTC

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