Namespace
library
Image / Tag
mongo:7.0.10-rc0-windowsservercore-ltsc2022
Content Digest
sha256:d4cfcce491bef4021e29d8626badae710198dcb5367c08da0e8992709d4ee7d5
Details
Created

2024-05-15 22:01:18 UTC

Size

2.54 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

5e3d73fb7d48d2a523386fbdddf0aa775a608e9ee11eac1bcb68b925b3063329

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.10-rc0


Layers

[#000] sha256:7c76e5cf7755ce357ffb737715b0da6799a50ea468cc252c094f4d915d426b3f - 50.85% (1.29 GB)

[#001] sha256:ba03114511317f14392dd2ac806678d1f79c73a8a7e0bc64013540e54c22020f - 26.51% (691 MB)

[#002] sha256:6adb646a06203812e11dfeef8d300fa8c363a5a15ea43796bd2db65e52efce0b - 0.0% (1.25 KB)

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

[#004] sha256:2cd184bdda87264d7c8a214e248ff68ef13a5069d4c0bca21b20b5d49003ed2a - 0.0% (1.26 KB)

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

[#006] sha256:c591d4072a9db44b4d49c4a1bcb02ece16bf40caa5b84be30e390715443a4e22 - 22.64% (590 MB)

[#007] sha256:55730d624d0692a24ffb180b5083b4b697f4adc970f6c850d73a33f21102e9f2 - 0.0% (1.25 KB)

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

[#009] sha256:399b6cb2b8bc714498313a79c4b62e97867303d5d28226ce4512c3fd7fa0bb39 - 0.0% (1.26 KB)


History
2023-06-08 12:55:20 UTC

Apply image 10.0.20348.1787

2024-05-10 20:40:01 UTC

Install update 10.0.20348.2461

2024-05-15 22:00:00 UTC

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

2024-05-15 22:00:00 UTC

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

2024-05-15 22:00:01 UTC

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

2024-05-15 22:00:01 UTC

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

2024-05-15 22:01:16 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-05-15 22:01:17 UTC

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

2024-05-15 22:01:18 UTC

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

2024-05-15 22:01:18 UTC

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