Namespace
library
Image / Tag
mongo:7.0.0-rc6-windowsservercore-1809
Content Digest
sha256:32036b96dd11a5fb1ee13f467552766b95ae79a07cec672a588a66546f60cf04
Details
Created

2023-06-30 23:20:47 UTC

Size

2.11 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

751c87693a7a232c76d3bbfe0208a56ba8c946b9ca640001d46575e3e96c6cfe

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.0-rc6


Layers

[#000] sha256:b1471cc22404d036d95728a9c37c1e3f025a1f0a331072c8613e38cf8f7ff1ed - 72.85% (1.54 GB)

[#001] sha256:ed9634b679e6c602a6aaf0bae51625e7ca041489c77150db557640304f51bb37 - 0.0% (1.37 KB)

[#002] sha256:4414f731c358fe497d3b02aa988bbc54a0e5722791296f94e7c36aaf0071d7a1 - 0.0% (1.38 KB)

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

[#004] sha256:2a947cfcf6616eb63f97f79203f2b58bbb3a9c4075ebd472558ff24dd7117003 - 0.0% (1.34 KB)

[#005] sha256:4dae5af7976816769f7dad014346a7e486c9fa21625ada9c1a0f3f5da60113f4 - 27.15% (587 MB)

[#006] sha256:15ec97714bac4d6a67cc26ba78a037d27f34da93fca97b01f544abb07a8f6d39 - 0.0% (1.39 KB)

[#007] sha256:16fc6c42ea2d6ca724975556bd18ec84b141240fd1ba651d0a1094f44fe5f177 - 0.0% (1.34 KB)

[#008] sha256:5b369af69659d006258807e87cc4a2f0e749c7aa5249c973dd400ed423189d1f - 0.0% (1.35 KB)


History
2023-06-21 08:47:17 UTC

Apply image 10.0.17763.4499

2023-06-24 02:28:43 UTC

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

2023-06-30 23:18:08 UTC

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

2023-06-30 23:18:09 UTC

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

2023-06-30 23:18:10 UTC

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

2023-06-30 23:20:43 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=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 ' mongod --version'; mongod --version; Write-Host 'Removing ...'; Remove-Item C:\windows\installer\*.msi -Force; Remove-Item mongo.msi -Force; Write-Host 'Complete.';

2023-06-30 23:20:45 UTC

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

2023-06-30 23:20:46 UTC

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

2023-06-30 23:20:47 UTC

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