Namespace
library
Image / Tag
mongo:8.0.21-windowsservercore-ltsc2025
Content Digest
sha256:c8da533f1f9b88b6587c66e5c5515367972357f9d6bf8efa13a86b5e5149f32e
Details
Created

2026-05-12 23:49:43 UTC

Size

2.8 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

b107b121c75025be9df72c421127c581c5d3e7a5e6a52c0c057fe37227ad035b

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.21


Layers

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

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

[#002] sha256:7965028b307727a0fb55e957bcd648a8d20581979e8491073b829c56ea9d7996 - 0.0% (1.26 KB)

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

[#004] sha256:3627ba628f4bb30d2a54fcdd628436c3325d01efb63db5d9347d2bcba54b392d - 0.0% (1.3 KB)

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

[#006] sha256:91edaa45f7c153740889ba8d73678c76592eaf1eb519a36732b83c31d6e36d97 - 26.5% (759 MB)

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

[#008] sha256:6176c3865e6482b2b079a6285e6dd58daa64f253d0515f9b27f9bfa6fc9dcbf3 - 0.0% (1.31 KB)

[#009] sha256:bd223ba4194ffe45237df59ce25dbb6eb071d4d69e9cffb6fe137f9694261600 - 0.0% (1.26 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-12 23:47:51 UTC

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

2026-05-12 23:47:51 UTC

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

2026-05-12 23:47:51 UTC

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

2026-05-12 23:47:52 UTC

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

2026-05-12 23:49:41 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-12 23:49:42 UTC

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

2026-05-12 23:49:42 UTC

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

2026-05-12 23:49:43 UTC

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