Namespace
library
Image / Tag
mongo:4.4.15-windowsservercore-1809
Content Digest
sha256:47c4dd33eb40330d9885af00ada6c1945ef42fdbe3d7daaf04bfb470ca63568a
Details
Created

2022-08-10 18:27:54 UTC

Size

2.72 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

cac59647e791ef572d2706c82ed3d5e8fdb2c93e0680a3d18a8a831e7ee35a36

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.15


Layers

[#000] sha256:b111c3320c949bea81612bf4554f1b6592c2f504920b5bf57ba340a1d4d52c93 - 64.27% (1.75 GB)

[#001] sha256:294d77ac553d7210b662d07674ef9e39a6c2e88dc15b9d2788d51e509bc8b54e - 27.41% (763 MB)

[#002] sha256:da71148bcd96afa7027d6172acee93aad6002bfbe87cadf468260667c09b3a89 - 0.0% (1.4 KB)

[#003] sha256:51759dd946ce1eda7cef91a90b70b829182d9ff77f6cd1008c29c0ba6cc0e52d - 0.0% (1.39 KB)

[#004] sha256:6b3e9a2138969e240b60da5d5edb97eb88d185405b88e3266895f271c8510cfb - 0.0% (1.4 KB)

[#005] sha256:a8bd14b2b7d3289871073ef0c90e59e46ffa6424677169a2eb7c61b0426be720 - 0.0% (1.41 KB)

[#006] sha256:754951d866973bd09c0e7b10cd80942ca00f05597718fc0abbaa24bd6d80494e - 8.32% (232 MB)

[#007] sha256:e502c2504ac7693743b3784c97449dc1666666873e3bf60ac7619133c134125a - 0.0% (1.39 KB)

[#008] sha256:2ff7aa4f0672d67b6ecedea96b4f480f03f82d7c59fdb19383eb164a927e81ee - 0.0% (1.34 KB)

[#009] sha256:76e366e3e7c2bcd1f3596a885710821a4556e2d8f7c7ae1a272d7f2a548277ee - 0.0% (1.4 KB)


History
2022-04-22 01:27:13 UTC

Apply image 10.0.17763.2803

2022-08-06 18:30:32 UTC

Install update 10.0.17763.3287

2022-08-10 13:44:07 UTC

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

2022-08-10 18:25:37 UTC

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

2022-08-10 18:25:38 UTC

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

2022-08-10 18:25:39 UTC

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

2022-08-10 18:27:51 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\mongo.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.';

2022-08-10 18:27:52 UTC

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

2022-08-10 18:27:53 UTC

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

2022-08-10 18:27:54 UTC

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