Namespace
library
Image / Tag
mongo:8.0.15-windowsservercore-ltsc2022
Content Digest
sha256:3cfb3baf256abe620538c369950e38497daa7b6a802a6eb718f9bf374f3f2841
Details
Created

2025-11-11 19:28:55 UTC

Size

2.38 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

212be476297cf2b93e0d1279506780aaf5e67865e0ba342e740d1bc9ff772557

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.15


Layers

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

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

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

[#003] sha256:afbd82263e154659c78ce9b09dea30ccc6ae47cdda9ad38137948dcbec2abbb2 - 0.0% (1.28 KB)

[#004] sha256:85fee281166a57d414717cbe10cbf3a8091fc93b862f7637744e0ff89d544641 - 0.0% (1.29 KB)

[#005] sha256:6c379e9aafbac539cdad3327b89ebd8c7e1280b096dd3791336a89caaf8f328b - 0.0% (1.29 KB)

[#006] sha256:e05fb239aff3475a41fd923fdcd5c3701b591449d002c0fd112607d810e409a6 - 30.71% (748 MB)

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

[#008] sha256:97480ae1da5743606887ff9a4770033c4d96f5e0869b1920686b451b2aaa63ef - 0.0% (1.26 KB)

[#009] sha256:b5503d9967a1014fb751745b7a9a1581e725d48adfb51c1eb72833450189b052 - 0.0% (1.3 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:12:54 UTC

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

2025-11-11 19:25:02 UTC

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

2025-11-11 19:25:02 UTC

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

2025-11-11 19:25:03 UTC

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

2025-11-11 19:28:53 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:28:54 UTC

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

2025-11-11 19:28:54 UTC

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

2025-11-11 19:28:55 UTC

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