Namespace
library
Image / Tag
mongo:6.0.25-rc0-windowsservercore-ltsc2022
Content Digest
sha256:a1aed4f33d29df2173e03aba5b96c6c8e0d944869613059d1cc16f7bd0b6f0d3
Details
Created

2025-07-09 18:10:55 UTC

Size

2.61 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

83de0090b59f91ce800fdea887cb860c8c3bfd3c2456cc661244c4917f17d957

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

6.0.25-rc0


Layers

[#000] sha256:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 52.08% (1.36 GB)

[#001] sha256:b829944a73d1d8ad37eaa13c64bf9189b6895cc5b45b79bb3563fa325d94b6a7 - 29.15% (780 MB)

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

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

[#004] sha256:4ad15b1c6e7cc4e2caaf91b98254ead7fd0e7f642fab5671f27e58b7bf7c97f3 - 0.0% (1.26 KB)

[#005] sha256:d0266849f23b84c92523748095b4e542132625cdf593bb875ae5589213c42259 - 0.0% (1.25 KB)

[#006] sha256:7111ff964c00e3829d4ae5ada51e0bfb4041fd480d83d913c08597cd40bf181d - 18.77% (502 MB)

[#007] sha256:1285a4f5f31f4f11e22c9903167ab10678550f002497ab2b0cc33495c2f762f2 - 0.0% (1.25 KB)

[#008] sha256:38926dfceb27df77a9c31ee09d5955f54485048d07ad46f3e7ec5fbc63229b61 - 0.0% (1.25 KB)

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


History
2024-09-06 00:01:38 UTC

Apply image 10.0.20348.2700

2025-07-05 05:31:06 UTC

Install update 10.0.20348.3932

2025-07-09 18:10:02 UTC

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

2025-07-09 18:10:03 UTC

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

2025-07-09 18:10:04 UTC

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

2025-07-09 18:10:05 UTC

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

2025-07-09 18:10:49 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-07-09 18:10:50 UTC

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

2025-07-09 18:10:51 UTC

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

2025-07-09 18:10:55 UTC

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