Namespace
library
Image / Tag
mongo:7.0.15-rc1-windowsservercore-1809
Content Digest
sha256:a0d4ca0536bdbc523850217344304b07253d9be60cf28e60881daf8644cc449e
Details
Created

2024-10-09 23:09:35 UTC

Size

2.34 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

c5186c48def842aee03dcf8479448c3682d04a5f86841cb95854f09a35b37d4c

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.15-rc1


Layers

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

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

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

[#003] sha256:6aed049c648321de5ee67b55ada75139e0487786b132ea71cbbc0c5ddb3ab601 - 0.0% (1.3 KB)

[#004] sha256:f212a9bdf26fcc39c9de6aa3540d0c6ecaa40b72a4b6b52c41d038f8a907fb65 - 0.0% (1.27 KB)

[#005] sha256:5c2ebe3c367985bbc41a149c62880f31f86a9bec986df26acc726706e9883373 - 0.0% (1.27 KB)

[#006] sha256:66e64fd23577fac9faf7a0aa9b6830efd685e4dd6a152aa427ce64a6a15e24d2 - 24.29% (582 MB)

[#007] sha256:291eeceeaf37e5990cff37e7dff37d052bf1ddd827379eb6f463180c553f4c94 - 0.0% (1.27 KB)

[#008] sha256:6e55dc264adbe2909fd6035f03ff087fbc1359645085ad8b3416998e34eee992 - 0.0% (1.25 KB)

[#009] sha256:62c20be657a8e1cfdb00685b5109cda8b813657186e1308989656433e48be612 - 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:07:16 UTC

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

2024-10-09 23:07:18 UTC

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

2024-10-09 23:07:19 UTC

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

2024-10-09 23:07:20 UTC

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

2024-10-09 23:09:32 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.';

2024-10-09 23:09:33 UTC

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

2024-10-09 23:09:34 UTC

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

2024-10-09 23:09:35 UTC

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