Namespace
library
Image / Tag
mongo:8.0.14-rc1-windowsservercore-ltsc2025
Content Digest
sha256:9ff48401c08d4b8e48e803758f1d146a965dbf1cbcbe44ea206cdaad5d4ea6c7
Details
Created

2025-09-10 23:47:50 UTC

Size

4.06 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

0c0b9ef89a9b5f5ee85cdc1f957a130612e9ad975be03e1ed5aabbfcdff16774

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-8.0.14-rc1-signed.msi

MONGO_VERSION

8.0.14-rc1


Layers

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

[#001] sha256:2e9750fac680d8e6b6c2e0a6f7718b1ccb76f68a6ebd9f9da4c5e470458c7e72 - 31.14% (1.26 GB)

[#002] sha256:654dc9c5ac9dd0a7cb788bc14bb729946da90053d4fb25d03f879b54177343a0 - 0.0% (1.3 KB)

[#003] sha256:0668b1778d9a711e0b3f6d16d3bfa178b96437ac156b61ef1352ccc7aa36ca62 - 0.0% (1.29 KB)

[#004] sha256:5dcdc7f8d3438497c890737736429e5cf1f7191db22e4d1698365cc9ffdfbc35 - 0.0% (1.29 KB)

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

[#006] sha256:e73752f4dd3d80ee5bee7a907e4470351a4ff56ad223c090435ff8399845204d - 18.0% (748 MB)

[#007] sha256:bd078ef3b80998ecc09beab0bc795df0bd17a71080b30de1098b7f2deb32c52e - 0.0% (1.29 KB)

[#008] sha256:34036d0abccc90a7a9288d8a0543279759731f18744601c22ea9371defc0abdd - 0.0% (1.3 KB)

[#009] sha256:51fc277922af7bfc1317fbbad0daa3008cf7602890507c1e1a216b3103cd7a8e - 0.0% (1.3 KB)


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

Apply image 10.0.26100.2605

2025-09-06 02:36:14 UTC

Install update 10.0.26100.6584

2025-09-10 23:45:24 UTC

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

2025-09-10 23:45:25 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_VERSION=8.0.14-rc1

2025-09-10 23:45:25 UTC

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

2025-09-10 23:45:26 UTC

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

2025-09-10 23:47:48 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-09-10 23:47:49 UTC

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

2025-09-10 23:47:49 UTC

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

2025-09-10 23:47:50 UTC

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