Namespace
library
Image / Tag
mongo:8.0.10-rc0-windowsservercore-ltsc2025
Content Digest
sha256:8fd5b4ef56d626013c4eb6ca24a9b654acef31a836bebb83240b0f4498c59e02
Details
Created

2025-05-22 23:17:40 UTC

Size

3.92 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:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 52.66% (2.06 GB)

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

[#002] sha256:c61946b53dcfbc00190462ae84070b70a3d725794cfbab7d55bb49c3a6d59db9 - 0.0% (1.36 KB)

[#003] sha256:555eca467e2e52aa8f92fae7f15c42d2733aa9dc94e1b4ba12e587632eba3c1b - 0.0% (1.29 KB)

[#004] sha256:0c0fa24b99e2c728232638c0477b085203d4202eee90babb1e45b639b4ce1acc - 0.0% (1.29 KB)

[#005] sha256:e12e61d3cc4e4f3b9881a078271c3cb549d1a298186dec12e6f8872c7edf457c - 0.0% (1.3 KB)

[#006] sha256:fa7b7f2b58f352fe396d1391fb4d88b1834beec78a253243c730d4d7b596cde7 - 18.44% (740 MB)

[#007] sha256:e9787a10670c95e5e27b3e00eb804e0a2939401e35d77759a51e2832bfeefb49 - 0.0% (1.31 KB)

[#008] sha256:dee2c02b04e8823e67771048e2ebc70b7f5d03a252c34bc26a1a5f37e84374d9 - 0.0% (1.31 KB)

[#009] sha256:3d4a99ae69f991edacc515609e6b6706a4ae3c1e1f75adc6c65675b532349e1e - 0.0% (1.35 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:15:34 UTC

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

2025-05-22 23:15:35 UTC

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

2025-05-22 23:15:36 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:15:37 UTC

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

2025-05-22 23:17:38 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:39 UTC

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

2025-05-22 23:17:40 UTC

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

2025-05-22 23:17:40 UTC

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