Namespace
library
Image / Tag
mongo:5.0.23-rc0-windowsservercore-1809
Content Digest
sha256:933e98a5a567971fb3e5a0f482e521dbbafa6b4d0f14e686af69cbf641a33954
Details
Created

2023-11-16 03:56:43 UTC

Size

2.21 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

5648bf3b9fa727f45c403d934889ebafc0aa343ca8ad0578c812cc281bb2a544

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

5.0.23-rc0


Layers

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

[#001] sha256:4f7bb9e009deb881cb90e8b4318258e03882de9bc9b312b763654b59cd13d0bb - 17.15% (388 MB)

[#002] sha256:61e4111e1324ff2110def2382c3796071edd92a76a262efa6c0657d549b64496 - 0.0% (1.38 KB)

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

[#004] sha256:19ef23302de425901a9524fe2aba12c687f996efe57d0258f388d1896dc324b7 - 0.0% (1.26 KB)

[#005] sha256:04e73e45966820cfb6327e4c62b9863f667885c77e0874d4edb201250bb96ff4 - 0.0% (1.28 KB)

[#006] sha256:f8996c4b0cbf74fdc25eea316ac17bd280bd979069debdb69e8d182587d497f8 - 13.24% (299 MB)

[#007] sha256:fa09f609f90591d624e580c1df28c3384283ebcb3be4de33fcf19d9e885b5e77 - 0.0% (1.3 KB)

[#008] sha256:73c2c2217feb611a03d6c9f4c90f524c2c728cbbd2ceb61fbca87b1b43091e49 - 0.0% (1.25 KB)

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


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

Apply image 10.0.17763.4499

2023-11-09 17:56:40 UTC

Install update 10.0.17763.5122

2023-11-16 03:20:52 UTC

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

2023-11-16 03:54:17 UTC

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

2023-11-16 03:54:18 UTC

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

2023-11-16 03:54:19 UTC

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

2023-11-16 03:56: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.';

2023-11-16 03:56:41 UTC

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

2023-11-16 03:56:42 UTC

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

2023-11-16 03:56:43 UTC

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