Namespace
library
Image / Tag
mongo:8.0.24-windowsservercore-ltsc2022
Content Digest
sha256:56c3b8cf90250056bc327f9bb668b169a17b1b67a5822a47c4b48c23c5af3294
Details
Created

2026-06-10 20:18:10 UTC

Size

2.73 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

1823d7dcef5e4c1b785e06ba55a14447142bf133a1b9f88b8bc77a14487ad988

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.24


Layers

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

[#001] sha256:6897a04901ec162be0eabd7eb636b5ac50d6e37c880f1db618610f2d777b1ce6 - 21.95% (613 MB)

[#002] sha256:fb5bd599ed22257f6360e5ce2329633d65ae6f16c9a58a3d0135a3aab2be4bd8 - 0.0% (1.26 KB)

[#003] sha256:3e6704f58a463d4ea63223b27a18a5657323f43c4d974aeeac5c9992521e0527 - 0.0% (1.3 KB)

[#004] sha256:849858cbf130a655c192f0132d3f5c481154db45c2e9c4d92121652c5946b88f - 0.0% (1.29 KB)

[#005] sha256:657606ae1ba23b9fd49c18a36bff7201b24ccdea5e3131c98228f08a3de7a7cd - 0.0% (1.26 KB)

[#006] sha256:971a8302a8bf70a0470369e65163eeced555661ff5d8318cfe1f9bc452917659 - 27.21% (760 MB)

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

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

[#009] sha256:d07c2eae65082b6ef829ecd16e3b12e63084c4147e3730f6a4f98fec863fb8e1 - 0.0% (1.3 KB)


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

Apply image 10.0.20348.4294

2026-06-07 06:43:23 UTC

Install update 10.0.20348.5256

2026-06-10 20:15:53 UTC

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

2026-06-10 20:15:54 UTC

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

2026-06-10 20:15:55 UTC

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

2026-06-10 20:15:56 UTC

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

2026-06-10 20:18:08 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-10 20:18:09 UTC

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

2026-06-10 20:18:09 UTC

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

2026-06-10 20:18:10 UTC

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