Namespace
library
Image / Tag
mongo:4.4-windowsservercore-1809
Content Digest
sha256:a0647929bb3fca22f086b39ef57ad91a9af262cf7a8cffb5f5f93bf9941a2e62
Details
Created

2024-04-10 00:01:37 UTC

Size

2.25 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

1b4803a76653736297a96a6232774d0ce869162797ee7b628dfaecac9b36d3b5

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.29


Layers

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

[#001] sha256:e920b78002850882cc637991bf16e3cd3fdd45576cf3e930819c98f6b43518d3 - 21.31% (490 MB)

[#002] sha256:856220153496aced4edc907222e45dc3ffd80b991ecd8f73e20c69f35746a31d - 0.0% (1.27 KB)

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

[#004] sha256:244ac00ea6cb2e5275c309b7f74abe618286fd165f35b445ff57bdeb1cf76148 - 0.0% (1.27 KB)

[#005] sha256:478667a541aab015187507cb780e9a0e9da716d0475b60334851112274a7267f - 0.0% (1.27 KB)

[#006] sha256:179f7ea6d1c97cdd2dbfcfd0b7998c0c1825daf4cb17263c9875a37e09346b22 - 10.23% (235 MB)

[#007] sha256:fd471d5dcdcafb109423e302141f334b7f5708b7a36ab3599eb8c104673f1aae - 0.0% (1.27 KB)

[#008] sha256:09cb3d95a7c2d4bf401bb9fb3c55e82ad47fb9febdf11455e935412147ad6dd8 - 0.0% (1.27 KB)

[#009] sha256:7065eb60c31734be877b41fc445ed3bf0d1fcc06363298fbeebde3e9356150bb - 0.0% (1.28 KB)


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

Apply image 10.0.17763.4499

2024-04-06 02:39:33 UTC

Install update 10.0.17763.5696

2024-04-10 00:00:17 UTC

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

2024-04-10 00:00:18 UTC

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

2024-04-10 00:00:19 UTC

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

2024-04-10 00:00:20 UTC

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

2024-04-10 00:01:32 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.';

2024-04-10 00:01:35 UTC

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

2024-04-10 00:01:37 UTC

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

2024-04-10 00:01:37 UTC

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