Namespace
library
Image / Tag
mongo:5.0.0-rc3-windowsservercore-ltsc2016
Content Digest
sha256:9118518b9c3692394fba5206a39fa80c285ed9a519c66c3ce8ccf5e3a6671e46
Details
Created

2021-06-24 00:20:35 UTC

Size

6.11 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

2280621261125fd01f1770059145aa26a3db41b67de01dd8519f3489d96f7f07

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

5.0.0-rc3


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 62.04% (3.79 GB)

[#001] sha256:2f52abeee6d6f4a925ad418b5e6200d4fca9bf92834ffc918b8bbaccd34251db - 33.47% (2.04 GB)

[#002] sha256:fa4e6085e5538e957ef06561fe1e62dff898da7f4bb577e81da74323aecab2d7 - 0.0% (1.26 KB)

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

[#004] sha256:d7f07a848f9f9141a8e79b35754ec362f27815555ac47c82f8f7e3da3f35c07f - 0.0% (1.37 KB)

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

[#006] sha256:7b3196652e94945f32f70e21eb892eecf80d39b508734d600f7230f1da3550d1 - 4.49% (281 MB)

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

[#008] sha256:0cffd87d94297a705c04389b03a691dfe84edb0d72be273c6e3fbb69d994c2a5 - 0.0% (1.39 KB)

[#009] sha256:1b0c5ea343db5d50c021a651d4380938100bb37add6b3dcd9b9aab6bcf18872e - 0.0% (1.4 KB)


History
2016-11-19 17:05:00 UTC

Apply image 1607-RTM-amd64

2021-06-06 15:37:00 UTC

Install update ltsc2016-amd64

2021-06-09 13:26:15 UTC

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

2021-06-24 00:17:15 UTC

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

2021-06-24 00:17:17 UTC

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

2021-06-24 00:17:20 UTC

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

2021-06-24 00:20:27 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.';

2021-06-24 00:20:30 UTC

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

2021-06-24 00:20:32 UTC

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

2021-06-24 00:20:35 UTC

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