Namespace
library
Image / Tag
mongo:8.2.5-windowsservercore-ltsc2022
Content Digest
sha256:3db644c6c4363f959f2660e3e2f1f0738a13ac196970f4cb3fcefae938fc659c
Details
Created

2026-03-10 22:13:02 UTC

Size

2.61 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

02d42062a64b88b68b385dbd723fc2110ef2d43a83642324d94f2f2a6268befb

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.2.5


Layers

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

[#001] sha256:e55fb54b35ee36c2d316d377de271bb39bd7e71b8d127ad0d2a686bc485ab280 - 17.63% (470 MB)

[#002] sha256:c7844febc2b3fc230db18cb213fc8393b6e366b0df81fa90676409b67dd0c203 - 0.0% (1.29 KB)

[#003] sha256:f108226ea6de24bdbbf312738f16cc310896fdd798863c92a05b7fae14d7adcb - 0.0% (1.3 KB)

[#004] sha256:2656a028d718ce2f9cb83ccadf96306625cbd90d2b3895686c224034736e86e2 - 0.0% (1.29 KB)

[#005] sha256:f022db29ffdb891255f7215ba57b95819445dee96e0238450411e8052ca4b6c2 - 0.0% (1.27 KB)

[#006] sha256:fb695cf5356292eb6d8e85928094844b3b956355636d411e82dafeb315cf19a8 - 29.15% (778 MB)

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

[#008] sha256:2c748d3175b6620afafe10a51b08c289298cf11bed8e7bbde3d0012fa29a5f99 - 0.0% (1.29 KB)

[#009] sha256:db2c67705fb982354c7f5773644772e8d86416efba04a1f7e1fb3e88f0a2c7c8 - 0.0% (1.3 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2026-03-03 22:48:22 UTC

Install update 10.0.20348.4893

2026-03-10 22:08:34 UTC

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

2026-03-10 22:11:17 UTC

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

2026-03-10 22:11:18 UTC

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

2026-03-10 22:11:18 UTC

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

2026-03-10 22:12:57 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-03-10 22:13:01 UTC

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

2026-03-10 22:13:02 UTC

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

2026-03-10 22:13:02 UTC

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