2023-07-04 01:28:57 UTC
1.77 GB
bdb81eb2257cfc0249874d87667d2888b75b267e2a172c6987babd986169ac32
MONGO_DOWNLOAD_URLhttps://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.23-rc0-signed.msi
MONGO_VERSION4.4.23-rc0
[#000] sha256:b1471cc22404d036d95728a9c37c1e3f025a1f0a331072c8613e38cf8f7ff1ed - 87.03% (1.54 GB)
[#001] sha256:ed9634b679e6c602a6aaf0bae51625e7ca041489c77150db557640304f51bb37 - 0.0% (1.37 KB)
[#002] sha256:0714600616d322803dbe660441a11396b49580fdcc08dca7deabf4aa3af33e0d - 0.0% (1.33 KB)
[#003] sha256:e9981290a9e21a6477385eb2b2c30efd95cb1680bd5252d5898833ef7c9e6116 - 0.0% (1.36 KB)
[#004] sha256:4a442ee451004a7c03af97960e7c2f3f37a1c075ebab9c4995a001608d0a8537 - 0.0% (1.38 KB)
[#005] sha256:3f30cb37cec580ada13e64ef6908dd651a0b4d6559e5e101a51b86a8cc4cdafe - 12.97% (235 MB)
[#006] sha256:f50914f868c54293be4217e7fb45fc197d774a96a54326dc952af9a8840a541c - 0.0% (1.39 KB)
[#007] sha256:7b4375c6f45afe7d818f8b2fcff4926c4fe2a139bf125e8e31dbf73397da6faf - 0.0% (1.38 KB)
[#008] sha256:4ac478b3efef2f8844e753a56d10e518b1584e02ec0ef3bb4bd778070001c279 - 0.0% (1.36 KB)
Apply image 10.0.17763.4499
2023-06-24 02:28:43 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop';]
2023-07-04 01:27:38 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_VERSION=4.4.23-rc0
2023-07-04 01:27:39 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_URL=https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.23-rc0-signed.msi
2023-07-04 01:27:39 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_DOWNLOAD_SHA256=bdb81eb2257cfc0249874d87667d2888b75b267e2a172c6987babd986169ac32
2023-07-04 01:28:54 UTCpowershell -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-07-04 01:28:55 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) VOLUME [C:\data\db C:\data\configdb]
2023-07-04 01:28:56 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) EXPOSE 27017
2023-07-04 01:28:57 UTCpowershell -Command $ErrorActionPreference = 'Stop'; #(nop) CMD ["mongod" "--bind_ip_all"]