Namespace
library
Image / Tag
mongo:4.4.20-windowsservercore-1809
Content Digest
sha256:67a2f5078565a36a9e884696826a066575c0b5170f6cfd8d52cc69de954dc349
Details
Created

2023-04-12 00:36:39 UTC

Size

2.16 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

86e0128dc758ba0e83740abd5a969917e29729251270602ba980ebee1580ffdf

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.20


Layers

[#000] sha256:6e222c5ada69382aa2b4fe30b23ae56c7e3ada92712109d20f3edd457a6120b6 - 73.71% (1.59 GB)

[#001] sha256:e9094c39c4b36a86359abb3da9e9d0d9c69b6930e9c7b308120310d43d63f693 - 15.68% (347 MB)

[#002] sha256:d81203863a516fb636d8e06e71cc938e6621b372bd98921ce87d23012f6c9e4c - 0.0% (1.35 KB)

[#003] sha256:98006e07fc9b178253121b7a2ac02d3d33eca9d1af3bbe7fc2067dd495ed8e21 - 0.0% (1.26 KB)

[#004] sha256:2616e9770b385c64e1750cba0d2bccb87391f49f48c2f129ba1263d002dd74c2 - 0.0% (1.3 KB)

[#005] sha256:862b742efac9879fdad4e2df8dabdc75962473f93be46f6f9a7406ac4646dd5b - 0.0% (1.26 KB)

[#006] sha256:86e62281e94b99c94de521bf2886c7ba90422c86bc06a273df2c1eb35e722ad1 - 10.61% (235 MB)

[#007] sha256:4dfed158f9bbfc197478d78af3c4de735fd1eb70ccb54878aea960cf5bfd6dcb - 0.0% (1.25 KB)

[#008] sha256:7f3ff4bc64cbaaed7a07df0487bedae0d5aefb345ef4bb58ce9573be702800a5 - 0.0% (1.25 KB)

[#009] sha256:cab09f76786f30870b41ae85999af8a1cd1282329b0d7965ba67eb368595c15c - 0.0% (1.29 KB)


History
2023-01-07 05:37:58 UTC

Apply image 10.0.17763.3887

2023-04-05 00:41:54 UTC

Install update 10.0.17763.4252

2023-04-12 00:18:38 UTC

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

2023-04-12 00:34:13 UTC

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

2023-04-12 00:34:14 UTC

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

2023-04-12 00:34:15 UTC

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

2023-04-12 00:36:36 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-04-12 00:36:38 UTC

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

2023-04-12 00:36:38 UTC

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

2023-04-12 00:36:39 UTC

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