Namespace
library
Image / Tag
mongo:8.0.9-windowsservercore-1809
Content Digest
sha256:947f91a9d63c91d5f7292ad3845c6de08f2dec0cf871ebec8644894057be7f72
Details
Created

2025-05-14 21:00:52 UTC

Size

2.75 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

4acf24592a7658cc58b4293cbf0a3f42133c9c1d4f2234f1a249f74aa1c7d22a

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.9


Layers

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

[#001] sha256:a95a939635fd6bec8c1562dcdbdde2fdb64095d1be9873313939c878db6f7279 - 15.67% (442 MB)

[#002] sha256:a20545d7f8da75ba423bb3ac161fc9ba6d4fa1bb93deda4314f5e41a58c4c93d - 0.0% (1.32 KB)

[#003] sha256:c1f1e5bead40d7da528672258c940c80a70aca7a607dfde72cc3a022ef5f3116 - 0.0% (1.33 KB)

[#004] sha256:8c89526aa33026170ce8b931ab5ca09a034c9f2fa96ee2292c205e99c0c6fac9 - 0.0% (1.31 KB)

[#005] sha256:53dd2fb5ee8fc193d7506b8bd815f1dcee480371c59c8f7d1ea5fcb14dbaaf4e - 0.0% (1.33 KB)

[#006] sha256:6735561f6b368310847828448334f9a8ec631681cb714e2f623f67daf7dbe86f - 26.16% (738 MB)

[#007] sha256:3576c1f6dcaa614dab531fed3807a2c32d1ede1362007e83f434a7af96891187 - 0.0% (1.32 KB)

[#008] sha256:fe21e288ac83262ee39912ef906ac1c051ee41d950f7bf9abc4e08cc618d2775 - 0.0% (1.31 KB)

[#009] sha256:ea616424480374dbcf66f423e69b1f807dc2fa47de19fd819384ede9a09e6f1e - 0.0% (1.32 KB)


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

Apply image 10.0.17763.6293

2025-05-09 13:51:15 UTC

Install update 10.0.17763.7314

2025-05-14 20:58:39 UTC

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

2025-05-14 20:58:41 UTC

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

2025-05-14 20:58:42 UTC

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

2025-05-14 20:58:43 UTC

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

2025-05-14 21:00:50 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-05-14 21:00:51 UTC

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

2025-05-14 21:00:51 UTC

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

2025-05-14 21:00:52 UTC

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