Namespace
library
Image / Tag
mongo:8.0.6-rc2-windowsservercore-ltsc2025
Content Digest
sha256:d0f2399b885df66b5298e965ac17338d9042a0ed6bd187bc98c95f5eb3b05955
Details
Created

2025-03-13 22:35:17 UTC

Size

3.43 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

14eef4c27881f9c1d60abfe8e5958a799e64384a63adc1252dcb856a676360e4

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.6-rc2


Layers

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

[#001] sha256:325ca01145f0fc17834eb1871e37e4a03c69b868e3eb071bf21be6413d720e5e - 18.84% (661 MB)

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

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

[#004] sha256:1602f920d67844c6466198b9653cd37cdac27eb4d98d691c870f67d41b8a59c7 - 0.0% (1.27 KB)

[#005] sha256:9099e7583db432196ae2fbc5ef141963cb44163fd306544e7682c1e7f9b784eb - 0.0% (1.28 KB)

[#006] sha256:51f54e33a0a905078892ed902f66506ddd3f1187f894b4000bb2d7dc75aede24 - 20.95% (735 MB)

[#007] sha256:f42c51a7ecee74cba5e13f35f7716426730c79e775507ac73b27eef176891cdb - 0.0% (1.26 KB)

[#008] sha256:47ee051a56c378b3fa9f6793684f71d855a0c65c69b15c39d322df64d03ee00d - 0.0% (1.25 KB)

[#009] sha256:c554f477b812116aa816a867fc2a8deb7412fd398dcdd267b38ac3cb50a43830 - 0.0% (1.25 KB)


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

Apply image 10.0.26100.2605

2025-03-07 06:08:48 UTC

Install update 10.0.26100.3476

2025-03-13 22:33:35 UTC

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

2025-03-13 22:33:36 UTC

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

2025-03-13 22:33:36 UTC

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

2025-03-13 22:33:37 UTC

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

2025-03-13 22:35: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.';

2025-03-13 22:35:16 UTC

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

2025-03-13 22:35:16 UTC

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

2025-03-13 22:35:17 UTC

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