Namespace
library
Image / Tag
mongo:8.0.26-windowsservercore-ltsc2022
Content Digest
sha256:7e542205226745b9a3f14e1655272c58d8a5a8db2c90147ce2edb6b849ddd019
Details
Created

2026-07-15 23:29:14 UTC

Size

2.75 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

c098ff1c829307b40e61beb1c9b24faf31d489f45e75a4100938d8501dd6fe94

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.26


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 50.4% (1.39 GB)

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

[#002] sha256:0bf1c78502ad00fffdd2af2125d531140c1600970086b39c951658cd03fd6488 - 0.0% (1.26 KB)

[#003] sha256:54bc208501b02a9d946a4a520b892e6f80457b3a50839566907a9f152f924078 - 0.0% (1.27 KB)

[#004] sha256:fa92fbef1c8ca922d7241ee123e87fc0121f89702bfafaa9d7e8368d81bd1353 - 0.0% (1.28 KB)

[#005] sha256:2ab9e7208f27e75b0d5c4e554dafeea559f65e2e3c169acec4eddcd7160e77e7 - 0.0% (1.31 KB)

[#006] sha256:a0ea64131f57c1ee8cda2f6c6bee8315ca193a9a4604c170dcf5aa49b45492f9 - 26.98% (760 MB)

[#007] sha256:69bb8a29f0d928fe96138d185a3e59114d22d706454fa3b27b065fd50e700004 - 0.0% (1.27 KB)

[#008] sha256:1de5828c3aac1baf8378cb7bcba4ae81dd1c3f6665e235b5322a232718f128d8 - 0.0% (1.26 KB)

[#009] sha256:19b77ddeb19ada78f97c377bf1e5c10298ec3897a2f6159d25343049bb085c97 - 0.0% (1.27 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:18:13 UTC

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

2026-07-15 23:27:26 UTC

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

2026-07-15 23:27:27 UTC

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

2026-07-15 23:27:27 UTC

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

2026-07-15 23:29:11 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:13 UTC

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

2026-07-15 23:29:14 UTC

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

2026-07-15 23:29:14 UTC

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