Namespace
library
Image / Tag
mongo:8.0.5-windowsservercore-1809
Content Digest
sha256:96b47af8b5c11da20001e636ac62979c633619f14a87e455ed2a634580858bb5
Details
Created

2025-03-12 19:08:16 UTC

Size

2.72 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

96b835f9cd76d4edfcdaa700c6d56aac47b1242541c05238d87c568c92db590e

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.5


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 58.86% (1.6 GB)

[#001] sha256:c77bec5e4bac3c7f6dc5d56da5ffc11e72881485b3a55330c17c915ad653f955 - 14.76% (411 MB)

[#002] sha256:92885e0ad298d1c4e119bb89bc215c637da1b6c58f77c2bfc1b7fdc33c8f4096 - 0.0% (1.27 KB)

[#003] sha256:98018c54fc665174a29dbc3d57a4fba95c4ed94b8eb0e6b1fb8c8ae2ac0078c6 - 0.0% (1.27 KB)

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

[#005] sha256:9ba6ee6d015078dd86606505cce63cbdce98f4705cc2889253fa506a924d7262 - 0.0% (1.27 KB)

[#006] sha256:84cf7071f0cfae96dbdc2128b3ff4540fa59040cc3f38290e26a0d39269fdbab - 26.38% (735 MB)

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

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

[#009] sha256:c589283b818d125255da5a559a48f936e0bd7541ecdaf03b8eab97d848b2c143 - 0.0% (1.27 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2025-03-05 22:09:20 UTC

Install update 10.0.17763.7009

2025-03-12 19:05:46 UTC

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

2025-03-12 19:05:48 UTC

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

2025-03-12 19:05:49 UTC

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

2025-03-12 19:05:50 UTC

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

2025-03-12 19:08:13 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-03-12 19:08:14 UTC

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

2025-03-12 19:08:15 UTC

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

2025-03-12 19:08:16 UTC

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