Namespace
library
Image / Tag
mongo:8.3.0-rc5-windowsservercore-ltsc2022
Content Digest
sha256:dec1bf60c4069ac508c6b1de85ea1109cd325cf2365a308df17db7919bc07817
Details
Created

2026-04-14 21:25:17 UTC

Size

2.78 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

94aaf3b1eb02d695ade45fce0d253d93340091988a4173cb8823f08a3cf88b10

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.3.0-rc5


Layers

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

[#001] sha256:7111ae68f8961455d230dc12d44c2193d29b7c981e35417323613a0c1aa06384 - 19.44% (554 MB)

[#002] sha256:55f84181d74246a11b7f4da8821ba1990c27244d7a7f753d6c736387dec99e63 - 0.0% (1.31 KB)

[#003] sha256:fd9950137c0058a80b0331e798ea200611364fe97e902bab15d5fd53c74d47d2 - 0.0% (1.26 KB)

[#004] sha256:2eca32b8fbb21b03d7fb4e08b032b97c5010baded2782a787d1e5fe140324969 - 0.0% (1.27 KB)

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

[#006] sha256:9c1a7bf804dfa0a8be1104d4edd419b32f9c32d60b073a3327fd87ead18c268e - 30.75% (877 MB)

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

[#008] sha256:48ae7fe889cd518010746c22173d507b9d387cd894fab32ff25e15c37e29776c - 0.0% (1.26 KB)

[#009] sha256:211ebcd682e23ef0d576d7beae1baee3b08c83ace0662aa90feadd0a509c0788 - 0.0% (1.26 KB)


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

Apply image 10.0.20348.4294

2026-04-13 03:24:09 UTC

Install update 10.0.20348.5020

2026-04-14 21:17:20 UTC

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

2026-04-14 21:20:09 UTC

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

2026-04-14 21:20:09 UTC

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

2026-04-14 21:20:10 UTC

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

2026-04-14 21:25:15 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-04-14 21:25:16 UTC

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

2026-04-14 21:25:16 UTC

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

2026-04-14 21:25:17 UTC

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