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

2022-08-17 00:16:56 UTC

Size

2.39 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

9d11a50f88ca1be781b76c9501bddd358e6acb9d06503410b7e9e415bd3d4c45

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.16-rc0


Layers

[#000] sha256:97f65a0ec59e643faf84024aa713a9be059322380315fda829756bbbd96d6258 - 56.1% (1.34 GB)

[#001] sha256:97b25a378238b615dc51216c4d87ce17fd3cc3dca9db458e8705d1a4c17e3bb7 - 34.36% (839 MB)

[#002] sha256:ff9b89cbdb5f88cb926263140643eb2bfad61fb092119830e290c8f8ff711c8f - 0.0% (1.32 KB)

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

[#004] sha256:65a767f24a7ae28c22376c91793c25ae7aa5213132f584a16a462e0dd97fc539 - 0.0% (1.38 KB)

[#005] sha256:016c4c70986475e2e65bb317fb9f8934d0f9e4c8e1ac9aed97132325253d60ee - 0.0% (1.37 KB)

[#006] sha256:8d5ae10c3b108a3814ceb2b8dc4dac0fab1f0287084d0738b73118eb57a62f73 - 9.54% (233 MB)

[#007] sha256:ea758be733d59bcf34c9ddda695305d2ec045688af7e5afdb240fa87dfdfc93e - 0.0% (1.4 KB)

[#008] sha256:38e97f0d3934b68a428be51302298422fbf173cfd81e393758e955c5ab830151 - 0.0% (1.35 KB)

[#009] sha256:47070eeecbe082ca113e17a188b859edc42b96e9e3de87e861fb6e9be601b550 - 0.0% (1.35 KB)


History
2022-04-22 01:12:09 UTC

Apply image 10.0.20348.643

2022-08-06 02:59:35 UTC

Install update 10.0.20348.887

2022-08-10 13:33:21 UTC

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

2022-08-17 00:15:36 UTC

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

2022-08-17 00:15:36 UTC

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

2022-08-17 00:15:37 UTC

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

2022-08-17 00:16:53 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-17 00:16:54 UTC

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

2022-08-17 00:16:55 UTC

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

2022-08-17 00:16:56 UTC

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