Namespace
library
Image / Tag
mongo:5.0.28-rc0-windowsservercore-1809
Content Digest
sha256:0413b999c0a327131a2c6002898e5f6e3de4a88976e555a5cd85f8b10cda5612
Details
Created

2024-07-10 17:14:56 UTC

Size

2.38 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

e8cf0bbb30839f4fdbff1dc5ff95ccd1a0e4a4029c1590b04bd070a805f464d3

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

5.0.28-rc0


Layers

[#000] sha256:c9226d61d3bdbf9f09821b32f5878623b8daaa5fb4f875cb63c199f87a26d57e - 64.66% (1.54 GB)

[#001] sha256:b5f98e7fe87492b83d7775a348ae0c94412b638ab5bba1a80b03c3a547708acd - 23.03% (561 MB)

[#002] sha256:499a78251ca3cc8ec432115add954b6d4c90b8a5b368d17bc3b85223b2ec55a1 - 0.0% (1.26 KB)

[#003] sha256:7e8a57486f5749149bcdff03ff08c04fd40b0518d7508dcaaafd31d38612a0f8 - 0.0% (1.27 KB)

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

[#005] sha256:9180e4c2433ab8ef1c20ce871c76dab8c508632bfc0476b5bc0eac4c3e3a0361 - 0.0% (1.27 KB)

[#006] sha256:295e196e90aaa6525ee0eaa41c6480165e2f212dbc629ee56b5f49bfb5411e91 - 12.31% (300 MB)

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

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

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


History
2023-06-08 12:58:24 UTC

Apply image 10.0.17763.4499

2024-07-03 00:34:32 UTC

Install update 10.0.17763.6054

2024-07-10 17:12:59 UTC

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

2024-07-10 17:13:00 UTC

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

2024-07-10 17:13:01 UTC

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

2024-07-10 17:13:02 UTC

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

2024-07-10 17:14:52 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-07-10 17:14:54 UTC

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

2024-07-10 17:14:55 UTC

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

2024-07-10 17:14:56 UTC

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