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

2025-11-11 19:26:55 UTC

Size

3.77 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

52c66f3e25db51c2fd5bc5f04e3aaa670a4754507e57db8e6473e5cf236c7144

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.2.2-rc0


Layers

[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 54.69% (2.06 GB)

[#001] sha256:a84ef3b04f81727036fe8b401efc70b6979844e2b78bdf09aa1b68b7ef4edf63 - 25.18% (973 MB)

[#002] sha256:14517ddbc978469ce3f6609a0d010223e2f2897b89283aba520db63aa903a52c - 0.0% (1.35 KB)

[#003] sha256:2ecb59ee4c57e4e53767e8694e4a2d029dce31873a78812e921d9445b383ecd4 - 0.0% (1.29 KB)

[#004] sha256:59557274f0ed33fd128c270b0706eea6e2487d6c3b8b1d3879efe03ae6093040 - 0.0% (1.3 KB)

[#005] sha256:2a3099a940faad7cbc534d2e6220187892d31269a7343db6c38eb48d57e3b1da - 0.0% (1.29 KB)

[#006] sha256:5a77c795fd7fb081f90c7628ee584ef3f0bf3715a69bdca0ab9df0b47b3e607a - 20.13% (777 MB)

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

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

[#009] sha256:cd20d32512e619d2d754fa403108b5ceb33e33cc836ee5b3da962ce1d901df6c - 0.0% (1.27 KB)


History
2024-12-08 22:41:37 UTC

Apply image 10.0.26100.2605

2025-11-09 10:25:55 UTC

Install update 10.0.26100.7171

2025-11-11 19:24:43 UTC

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

2025-11-11 19:24:43 UTC

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

2025-11-11 19:24:44 UTC

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

2025-11-11 19:24:45 UTC

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

2025-11-11 19:26:53 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.';

2025-11-11 19:26:54 UTC

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

2025-11-11 19:26:55 UTC

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

2025-11-11 19:26:55 UTC

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