Namespace
library
Image / Tag
mongo:4.4.23-windowsservercore-1809
Content Digest
sha256:79de9012fba2109a26e8530bdf05ae696889ba9274fdaf17eaa1ad4c933b7c61
Details
Created

2023-08-10 01:52:09 UTC

Size

2.09 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

cc0c9055c5a8cb43bb51c14d5447f358be717f63ebd9b9774ef923289170393a

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.23


Layers

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

[#001] sha256:b95f433aa7d90194e65f6b08a599b3ee12292e124d47c204107baedfd71054c1 - 15.4% (329 MB)

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

[#003] sha256:6ee4ad53a2524bc233ff5074bbbe4d6515b6d6dc90c4414df3c2a2ea65802a74 - 0.0% (1.25 KB)

[#004] sha256:32d817f9bf0404a4b420034b10bd862e088ec70d965d1dca55df402f756d3044 - 0.0% (1.26 KB)

[#005] sha256:d827f1c95ba23a5585bbd325fdec7867e9dd20b341ba2258f1fcbcefdbf7fe09 - 0.0% (1.25 KB)

[#006] sha256:04227c8bfb3b72bb03622f066f6533f3c974d8c97f83f4eb64b9d41ab7a53e57 - 10.98% (235 MB)

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

[#008] sha256:f053d79933f58dc4cce56e628ac8a4fe5ec54c3b8368ccd25906bde8f0e44647 - 0.0% (1.29 KB)

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


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

Apply image 10.0.17763.4499

2023-08-02 09:07:15 UTC

Install update 10.0.17763.4737

2023-08-10 01:11:08 UTC

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

2023-08-10 01:49:47 UTC

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

2023-08-10 01:49:47 UTC

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

2023-08-10 01:49:48 UTC

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

2023-08-10 01:52:06 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-08-10 01:52:07 UTC

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

2023-08-10 01:52:08 UTC

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

2023-08-10 01:52:09 UTC

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