Namespace
library
Image / Tag
mongo:8-windowsservercore-ltsc2025
Content Digest
sha256:f0e14b41f3eb5a2eacaa8945a1bc1c72499244dc68021629bb4c73df8c8e2871
Details
Created

2026-05-13 18:12:04 UTC

Size

2.82 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

a23b5865415ab2d507823e64163e5f3b09a4118bd8ede539938673137faab690

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.2.9


Layers

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

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

[#002] sha256:1c2e71fcfcdfe254acdf87925bb5a5e77fbd7dbfebd1a7c8acf08ae52d7fbe4a - 0.0% (1.27 KB)

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

[#004] sha256:b4f545ef23daec859b93292fb34eb96cd3da0db3764b84db3ecfa7b3c6a94f92 - 0.0% (1.26 KB)

[#005] sha256:5031d0fb24d43b7d05964284ea133a90ded3c72b3eb0f0ded1fc0fa3c8d6e144 - 0.0% (1.26 KB)

[#006] sha256:2745f4b940463b5da7c1c713ed5a098edc11e5017789dd9f6375cade355c2abd - 27.04% (780 MB)

[#007] sha256:4bcecd0543b7b801867a19822abf90b74f9b0ae02da602ff9fa563c8a692186b - 0.0% (1.25 KB)

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

[#009] sha256:800ebb76b516f5dd3be3460aaa73ee0b2b8b6dc225058a2bc64e0609154893c1 - 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-13 18:08:27 UTC

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

2026-05-13 18:08:29 UTC

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

2026-05-13 18:08:31 UTC

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

2026-05-13 18:08:32 UTC

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

2026-05-13 18:12:02 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:03 UTC

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

2026-05-13 18:12:04 UTC

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

2026-05-13 18:12:04 UTC

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