Namespace
library
Image / Tag
mongo:8.3.2-windowsservercore-ltsc2022
Content Digest
sha256:36decbc6dc34fbf1c1a0ae7715e09cc3fa9d62217d9db14ed51a189fdf8bef05
Details
Created

2026-05-13 18:07:26 UTC

Size

2.83 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:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 48.94% (1.39 GB)

[#001] sha256:857865ad3eca4da109d969134a9cab7225d9de49597914ae325d43661900f513 - 20.82% (604 MB)

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

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

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

[#005] sha256:654087c9ca7908558780ecf44a027dfb6fcb11a919295b29b2c285f31876a6a4 - 0.0% (1.29 KB)

[#006] sha256:f56375082b705032f95f30031cc7a952efb32ad280846252531bf7df84fe3741 - 30.24% (877 MB)

[#007] sha256:a3f7a665b84cc0a95adaca0c6358ea826e5599a3c09e8647029fa25a88025238 - 0.0% (1.3 KB)

[#008] sha256:f976c26bc11d30e0ff27eac173518fd00c563ea80eb307fab955e0b1da1943e2 - 0.0% (1.28 KB)

[#009] sha256:7f4ea8bf7dd0516679d1b604081cc5ce192346526ad74bd3bbf36aa0130ed80a - 0.0% (1.26 KB)


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

Apply image 10.0.20348.4294

2026-05-07 03:49:54 UTC

Install update 10.0.20348.5139

2026-05-13 18:03:41 UTC

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

2026-05-13 18:03:43 UTC

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

2026-05-13 18:03:44 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-05-13 18:03:45 UTC

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

2026-05-13 18:07:23 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:07:25 UTC

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

2026-05-13 18:07:25 UTC

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

2026-05-13 18:07:26 UTC

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