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

2026-05-13 18:12:25 UTC

Size

2.64 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

87a344eba774c38d0ee7261b3c0a12fb3bd2e16241ff4026ae7220c789cf06bc

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.34


Layers

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

[#001] sha256:f787ad06f38db673c3d304f21c09a82ff9a1ced32062515ea52fdb0383457b24 - 24.13% (651 MB)

[#002] sha256:8bf75a4d35f271784c854a97f12bf1aa092d77d38e6e4965b231294277b47229 - 0.0% (1.28 KB)

[#003] sha256:e3f22f203dd6595ec8149b170111ecd551c50da63ea6ea921dbe265ce76a5607 - 0.0% (1.26 KB)

[#004] sha256:240e55a5bb099af00b1b5f65b3aeb874ffbd8021ff165e2ddaad29238ea01beb - 0.0% (1.23 KB)

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

[#006] sha256:880be62c03c8fa5256e15cbc21f7f776a265c3aef9356ff49b8726c7f0596385 - 22.04% (595 MB)

[#007] sha256:57eb0f77775eced084b5d1c9c9386a84ccb6a9d44740fbc36923378f4aef0081 - 0.0% (1.26 KB)

[#008] sha256:a207630cf00108ca3607d5199f37bc33fdc499c6be681bac7f041aae106847b9 - 0.0% (1.28 KB)

[#009] sha256:9304e5fe1d9eddfebf0b0b5e6e5b30bd8b5fe6c2a58cf254d0c36aa5fa1e6368 - 0.0% (1.25 KB)


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

Apply image 10.0.26100.32230

2026-05-10 10:08:54 UTC

Install update 10.0.26100.32860

2026-05-13 18:09:54 UTC

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

2026-05-13 18:09:57 UTC

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

2026-05-13 18:09:58 UTC

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

2026-05-13 18:09:58 UTC

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

2026-05-13 18:12:23 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-05-13 18:12:24 UTC

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

2026-05-13 18:12:25 UTC

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

2026-05-13 18:12:25 UTC

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