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

2025-11-11 19:27:17 UTC

Size

2.38 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

f09850c6a8dc45243586d6db5651239f2404913285d9d99f5d01a9e0cce65f5b

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.16-rc1


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 58.27% (1.39 GB)

[#001] sha256:3a26269efcb0f33c920b21f98d305592e7310bbe548291a16043e48a0c1feba5 - 10.99% (268 MB)

[#002] sha256:4f326b8fe07be7d38be62a658845f57c9baa695c320270ef5512c05a8a3a7abc - 0.0% (1.3 KB)

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

[#004] sha256:6dc77db975d295d79fd1e4cc2a21ae41ea77857cbca795b5b83e80c936227a09 - 0.0% (1.26 KB)

[#005] sha256:fcc41a765487f7f2e85559fa644c4d0541eea85f7dff7abf650cba59263aa11c - 0.0% (1.26 KB)

[#006] sha256:8f8637b9dec3f1a289ab4b2f01a2d7d6debcf4e2447a09dcdbea27e347f6cc9a - 30.73% (749 MB)

[#007] sha256:2216517924f90c41e4c03192fdf0b62d6778519eee194bdef991cceeee1c3a39 - 0.0% (1.26 KB)

[#008] sha256:6fc18a88f9cf602ea5be641297ed7ba6ac1c97b1b2369332b2f4d0cd4ac50ca7 - 0.0% (1.29 KB)

[#009] sha256:ad9e09aff1136c6ff84c11d67593074eb2e9f77c389e86c0187f090d6d0fdba4 - 0.0% (1.26 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2025-11-05 05:39:13 UTC

Install update 10.0.20348.4405

2025-11-11 19:22:25 UTC

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

2025-11-11 19:24:56 UTC

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

2025-11-11 19:24:57 UTC

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

2025-11-11 19:24:57 UTC

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

2025-11-11 19:27:15 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-11-11 19:27:16 UTC

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

2025-11-11 19:27:16 UTC

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

2025-11-11 19:27:17 UTC

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