Namespace
library
Image / Tag
mongo:8.0.28-windowsservercore-ltsc2025
Content Digest
sha256:e0b22bc84b79cb4d7cdfbe6bdda48277fe3480c8dab2c205ed15bd410d035c6b
Details
Created

2026-07-22 22:22:01 UTC

Size

2.94 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

4dba821fbe63e380f80a21785bade811744a276c17d01e51c8c5bbbcd9c682fb

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.28


Layers

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

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

[#002] sha256:9af6ce730ffcb959e2a1e2f4a8fe396d6aaa0497fc3a275f899d582bc8b3df72 - 0.0% (1.32 KB)

[#003] sha256:1062d6713bbf0f589fda7e357edd3b4d30d9806aca533d1940f63c8e3a5845b0 - 0.0% (1.27 KB)

[#004] sha256:92f99e842be9b8da98716e747539b741e6554049b3e3d1bacf9a7030bc346443 - 0.0% (1.23 KB)

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

[#006] sha256:bbe5b3d14c6a286c23cce2742a0b8ea4941f3d08697ba1c04fdcaa311c86e1b9 - 25.32% (761 MB)

[#007] sha256:5027043cff02beaa792c47ebae2fb5961aa8d9260a32e23190083229128386f3 - 0.0% (1.26 KB)

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

[#009] sha256:496df7e649af5e782f7d020c95a0c78062aa124ab8ccfb23b0486ade142a9dc2 - 0.0% (1.25 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-22 22:18:31 UTC

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

2026-07-22 22:18:33 UTC

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

2026-07-22 22:18:34 UTC

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

2026-07-22 22:18:35 UTC

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

2026-07-22 22:21:59 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-22 22:22:00 UTC

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

2026-07-22 22:22:00 UTC

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

2026-07-22 22:22:01 UTC

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