Namespace
library
Image / Tag
mongo:8.3.0-rc5-windowsservercore-ltsc2025
Content Digest
sha256:34b149ace0cc8e8796c98025444d7882ec7c272c10d1a561fdf25dae8636e0ac
Details
Created

2026-04-14 21:14:36 UTC

Size

2.84 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:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 49.95% (1.42 GB)

[#001] sha256:3642e4b8bb65ad3768f9f74a0dc48bb2e3294779b5d51573a234bfbe4f65324e - 19.9% (579 MB)

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

[#003] sha256:6fd16ff233edb815eabd4b3ab67dcf09cf535d8a635fae8f3993fb97286d120c - 0.0% (1.29 KB)

[#004] sha256:30f9bd831e045a7bb734bd139a87b4fb7348bb6b2a16046ef0e1829c9759a73c - 0.0% (1.26 KB)

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

[#006] sha256:7762668842572f60357cf918788200393e89a06737f5762cb2fe671e5d8cb4dc - 30.15% (877 MB)

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

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

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


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

Apply image 10.0.26100.32230

2026-04-13 07:00:46 UTC

Install update 10.0.26100.32690

2026-04-14 21:12:27 UTC

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

2026-04-14 21:12:27 UTC

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

2026-04-14 21:12:27 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:12:28 UTC

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

2026-04-14 21:14:34 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:14:35 UTC

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

2026-04-14 21:14:35 UTC

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

2026-04-14 21:14:36 UTC

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