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

2023-11-16 04:06:50 UTC

Size

1.99 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

3394a75d2cf0165bfc0e8d787ecf1542b7e55bce89297f5cf02f20cb31f78cad

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.26-rc0


Layers

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

[#001] sha256:7989ef2c4cfb06d845746a3c3660481ea84d3f5c8216041855ce528f0ac4015c - 23.36% (475 MB)

[#002] sha256:d1a73dc3dec59ae25ff1232f5fdf2ab39df387f3bf86ba48717ff271d76c2feb - 0.0% (1.39 KB)

[#003] sha256:f3bcedc81212810e689fa6bdb2a96d1eb99640af500f18fdb265f4f5243935f7 - 0.0% (1.38 KB)

[#004] sha256:2daad8e6c556084a96e021ee6e3306b6d427787a46e2f29d61f5faa7818a5909 - 0.0% (1.4 KB)

[#005] sha256:dfa157624f0c6f7fc03cb2e8ea3d897533907ec41f6fde874404df683948110f - 0.0% (1.4 KB)

[#006] sha256:601e7a3df62d4f0254b44eacfb0be67785085c8942fb70939950c14ab30dd666 - 11.52% (234 MB)

[#007] sha256:fd9625170400b877b8a167e7cbb05d810af7dc2787670d7b869256729cc7c769 - 0.0% (1.38 KB)

[#008] sha256:67dfa5fdf3bc91fe04b78f062ac7a63a288a6220eade6385c733bfc698cf90c7 - 0.0% (1.39 KB)

[#009] sha256:8d43b5e501c8bc35081cb02b7f46787e699dc02a8238b38f7885c4a122d0ab51 - 0.0% (1.38 KB)


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

Apply image 10.0.20348.1787

2023-11-09 06:47:20 UTC

Install update 10.0.20348.2113

2023-11-16 03:18:08 UTC

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

2023-11-16 04:05:24 UTC

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

2023-11-16 04:05:25 UTC

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

2023-11-16 04:05:26 UTC

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

2023-11-16 04:06:46 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 04:06:47 UTC

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

2023-11-16 04:06:49 UTC

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

2023-11-16 04:06:50 UTC

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