Namespace
library
Image / Tag
mongo:8.0.10-rc0-windowsservercore-ltsc2022
Content Digest
sha256:6e0733206a02b374a853f37ac61779c783c0daf2a1af9f27c89f062dbabdff13
Details
Created

2025-05-22 23:23:05 UTC

Size

2.84 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

fd1ec26bc5e23e26428a7d82a66aceebe581de53499a03f94a20b38aaf1bd1d1

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.10-rc0


Layers

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

[#001] sha256:9f99f0856d3665c6aeede32823351187cdab09d90cb8608ff70427d552ab356b - 26.61% (774 MB)

[#002] sha256:d7942e516307817230a805a86604d01aa03a2dda8319b46bed23936538399ea9 - 0.0% (1.25 KB)

[#003] sha256:281e5b753007f73ae734e8c1108cbf0fd9efd8a21b995e05f44f5ca13e8e7a3c - 0.0% (1.25 KB)

[#004] sha256:092b0bb21087034cdbcfe08f21101145c969f3796d4ac04e819175486fd5bb8c - 0.0% (1.25 KB)

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

[#006] sha256:17d7afbeabdcbc307bac528df5eebd3f3f3f9f036196406d7304269ce65ee43c - 25.44% (740 MB)

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

[#008] sha256:290ccdf4ec2b14a8c483870c65f3d11316abfd9a7cbb2e0ed0c14531e16bb6ec - 0.0% (1.25 KB)

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


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

Apply image 10.0.20348.2700

2025-05-09 19:38:10 UTC

Install update 10.0.20348.3692

2025-05-22 23:21:35 UTC

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

2025-05-22 23:21:36 UTC

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

2025-05-22 23:21:37 UTC

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

2025-05-22 23:21:38 UTC

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

2025-05-22 23:23:01 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:23:03 UTC

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

2025-05-22 23:23:04 UTC

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

2025-05-22 23:23:05 UTC

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