Namespace
library
Image / Tag
mongo:6.0.24-rc0-windowsservercore-ltsc2025
Content Digest
sha256:988a7f670391dca2487d293ad3c000d1ed0e7e1266a620dd981bb9d1f85e1ed7
Details
Created

2025-05-22 23:17:28 UTC

Size

3.69 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

ec161ad4128864948d96a218a898062fd68de4a1202e596304a0d5ed3aea4fce

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

6.0.24-rc0


Layers

[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 55.98% (2.06 GB)

[#001] sha256:cc834e13e71633c2d66ec6513d57c31a3157fc5933859d492ecf45fc8a7476c3 - 30.71% (1.13 GB)

[#002] sha256:503c7903c2dba077c35983b8660ea4ae11f759d6d8f376303e2c6c9727526536 - 0.0% (1.33 KB)

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

[#004] sha256:f1e22aa3f01ed2eb5dc610c4b75d027356bf378cc68108ff79093b3e35554059 - 0.0% (1.3 KB)

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

[#006] sha256:439f1035632c8a15557d01838c6a009fb90ff299ffcd43e1890386f4a8054bf2 - 13.31% (502 MB)

[#007] sha256:51ad59711950ad8b342b7a614c49147250cb9e00fd0ca6ab8f315a34fc3b9e7e - 0.0% (1.28 KB)

[#008] sha256:1535c7657d1fdab9c9f5c300182d216ae63d903573d3184501b9bba8382b4b10 - 0.0% (1.29 KB)

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


History
2024-12-08 22:41:37 UTC

Apply image 10.0.26100.2605

2025-05-10 01:13:32 UTC

Install update 10.0.26100.4061

2025-05-22 23:16:10 UTC

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

2025-05-22 23:16:11 UTC

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

2025-05-22 23:16:12 UTC

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

2025-05-22 23:16:13 UTC

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

2025-05-22 23:17:25 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.';

2025-05-22 23:17:26 UTC

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

2025-05-22 23:17:27 UTC

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

2025-05-22 23:17:28 UTC

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