Namespace
library
Image / Tag
mongo:7.0.37-windowsservercore-ltsc2022
Content Digest
sha256:6af912d8f071a4edf47a38a60166f6d05ca85fea482dbfacf33f7e1b5aef70bd
Details
Created

2026-07-15 23:29:17 UTC

Size

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

[#001] sha256:0675e37b24741ccc9e6ff6dda8512e3be78ba3519c8af33b04872e4738349249 - 24.03% (638 MB)

[#002] sha256:dd10fe4583a5940def2910e6017eaedce1c193c0c7ab637e92cd8bbb4106590a - 0.0% (1.3 KB)

[#003] sha256:76c91f3e2b22e21f5dec1665715835cf19bed460663d615f143d05f2a656e0d7 - 0.0% (1.29 KB)

[#004] sha256:7fbbf70e385a01d5788854953fe13c02efcbe635a6f2c7ac2a4a304ad9be898c - 0.0% (1.3 KB)

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

[#006] sha256:17a213718a76bea9eaf3dd7b496e50881fb6efde71a77555aa0dfca496c9dd22 - 22.43% (595 MB)

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

[#008] sha256:8b57cc80ec7795500bbb11cc9bb9648da8401532d15274bd735084bdc4543919 - 0.0% (1.25 KB)

[#009] sha256:6ff12a13d4fb91c1665b71a0b22807a7b4070dbd2e7396f1eec8aaa85fd1c023 - 0.0% (1.26 KB)


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

Apply image 10.0.20348.4294

2026-07-11 16:30:20 UTC

Install update 10.0.20348.5386

2026-07-15 23:24:09 UTC

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

2026-07-15 23:27:54 UTC

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

2026-07-15 23:27:54 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:27:55 UTC

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

2026-07-15 23:29:12 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:29:16 UTC

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

2026-07-15 23:29:16 UTC

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

2026-07-15 23:29:17 UTC

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