Namespace
library
Image / Tag
mongo:5.0.29-windowsservercore-1809
Content Digest
sha256:b6a36e4b72d2e52ab1f8c6ea2372b5ea1dc1d1ac597dfa12d575fd887d3147e0
Details
Created

2024-10-09 23:10:44 UTC

Size

2.06 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

3188d1a49244ce4a6bc4d853a3d79c178a9d0ae5e6613e4f42cf4156e6b25178

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

5.0.29


Layers

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

[#001] sha256:eec1ab8e4a3936959c2381d3aaa9aaf9caf01f82fb701f2b4c3cc3dbf6d035dd - 8.2% (173 MB)

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

[#003] sha256:3ea456414357f44ca8b59c5b49d95b558fabef0522ec01db0156e67cbcafccc9 - 0.0% (1.26 KB)

[#004] sha256:4450637076863ff8c05e5a467775898a7ecb9350f21f10dafcddee7da5518491 - 0.0% (1.26 KB)

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

[#006] sha256:4a3633041e16644f30c31b80fb46abfef5c26bc732cfd3d6bc0705f02231dfd5 - 14.12% (298 MB)

[#007] sha256:9ccb78a7fbb6f645d1a084627f1953f9196b424b3c547b0f8caf3f014f6fe037 - 0.0% (1.27 KB)

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

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


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

Apply image 10.0.17763.6293

2024-10-04 21:48:44 UTC

Install update 10.0.17763.6414

2024-10-09 23:08:40 UTC

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

2024-10-09 23:08:42 UTC

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

2024-10-09 23:08:43 UTC

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

2024-10-09 23:08:46 UTC

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

2024-10-09 23:10:39 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=Client,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 ' mongo --version'; mongo --version; Write-Host ' mongod --version'; mongod --version; Write-Host 'Removing ...'; Remove-Item C:\windows\installer\*.msi -Force; Remove-Item mongo.msi -Force; Write-Host 'Complete.';

2024-10-09 23:10:41 UTC

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

2024-10-09 23:10:42 UTC

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

2024-10-09 23:10:44 UTC

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