Namespace
library
Image / Tag
mongo:8.0.14-rc1-windowsservercore-ltsc2022
Content Digest
sha256:f389bbea62eb330b1dd03c4146fc06737bef5fde8b36e084a169bea9b09eaa1f
Details
Created

2025-09-10 23:47:20 UTC

Size

2.86 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:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 47.69% (1.36 GB)

[#001] sha256:3b109a50da182bf38f697ad080cf5640df286bdfc5e6a1f2f6b2002c48534385 - 26.74% (782 MB)

[#002] sha256:5aa8e8bf1f531980f2ac5cfa91e0cca121348fa6f00c50b73d2f3386e56fc0d4 - 0.0% (1.29 KB)

[#003] sha256:12e335908f4565f10fa3c0966cf228bd25b1518c765ffd76b4ddcc98f2e5d26b - 0.0% (1.26 KB)

[#004] sha256:19f3d9e9747d1d891cd019fa4c43d3a9caf6e6c9803f13b05670adfc8d18e272 - 0.0% (1.28 KB)

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

[#006] sha256:dd3c8c4d5d56568594d45712891fbd7ab9b128388b358fe71abdb55e41fc14fb - 25.57% (748 MB)

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

[#008] sha256:81e19e2ada33a266cf5a1535b0aa239923a7a9b71736d6b80b911685110a5df6 - 0.0% (1.27 KB)

[#009] sha256:e11ba6bb4303b35a99ef452b11046e614871625abe5f035701a0993b442dccf2 - 0.0% (1.29 KB)


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

Apply image 10.0.20348.2700

2025-09-05 13:15:05 UTC

Install update 10.0.20348.4171

2025-09-10 23:45:27 UTC

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

2025-09-10 23:45:28 UTC

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

2025-09-10 23:45:28 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:29 UTC

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

2025-09-10 23:47:14 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:18 UTC

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

2025-09-10 23:47:19 UTC

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

2025-09-10 23:47:20 UTC

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