Namespace
library
Image / Tag
mongo:8.3.2-windowsservercore-ltsc2025
Content Digest
sha256:2805341399e0e7739dab637a2727e42f715c3fb6002be589302e7d838fc2dcfd
Details
Created

2026-06-09 22:25:22 UTC

Size

2.98 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

f2af413beb2fa9287b804c70f109563717a6fcdefe905562ca8eeee9762485a7

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.3.2


Layers

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

[#001] sha256:2ee71d57b2226db82d002abc39a97b7dd144f007db435566364a0285bf115b83 - 23.64% (721 MB)

[#002] sha256:6985de59b876092dec8c3ddb9a1f1ad4ee6f297400431a4383dd16532d657dbb - 0.0% (1.25 KB)

[#003] sha256:86466ccc1d10ad61bf11c042ad32002301f71041f35d877e1ba9691cb78e185a - 0.0% (1.25 KB)

[#004] sha256:0127b49ee8df80f095835db8d9d713fadc6904180bc4a0c2e200566c0dc3e7ea - 0.0% (1.23 KB)

[#005] sha256:9cd293e1ac3c1e6df67bcb5f9749bae59ecfda2113c9c2f206814d46c9fe9c6d - 0.0% (1.28 KB)

[#006] sha256:bbf8e5f63c39a575f35d4318bc2087b265dd58682c70cbe5e41073fb32abdeac - 28.75% (877 MB)

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

[#008] sha256:88b766752bc9f8a1703f5e8663fa54dea19c63a51c6e55ffb2fa40e1398b6fff - 0.0% (1.25 KB)

[#009] sha256:0274dd854e24ae470cd2ec135c555267dafae779c87ef52cda92a046e6b317fa - 0.0% (1.23 KB)


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-06-07 07:36:39 UTC

Install update 10.0.26100.32995

2026-06-09 22:23:15 UTC

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

2026-06-09 22:23:15 UTC

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

2026-06-09 22:23:15 UTC

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

2026-06-09 22:23:16 UTC

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

2026-06-09 22:25:21 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-06-09 22:25:22 UTC

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

2026-06-09 22:25:22 UTC

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

2026-06-09 22:25:22 UTC

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