Namespace
library
Image / Tag
mongo:4.2.24-rc0-windowsservercore-1809
Content Digest
sha256:1dcdee4a290b83d247d74f0e4cbb2fbf54e995d306b408fda2f5245329db3357
Details
Created

2023-01-31 19:23:22 UTC

Size

1.86 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

b8e715667a0164ada343368521af385dd5f66da2aaf319677bedbf80dce5d136

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2012plus-4.2.24-rc0-signed.msi

MONGO_VERSION

4.2.24-rc0


Layers

[#000] sha256:6e222c5ada69382aa2b4fe30b23ae56c7e3ada92712109d20f3edd457a6120b6 - 85.6% (1.59 GB)

[#001] sha256:f99eee4cf5f23d13a762e719b10916801f19f9df4bd7ff9b4c5cf57133b3dc04 - 0.0% (1.39 KB)

[#002] sha256:931c5962085653bf1d03c2d91542c74ab5dd68f2fcbeff4fcf246a6ada3d5417 - 0.0% (1.4 KB)

[#003] sha256:f78fc550cef50d7d79a396f1fc66b8df5f4522b3d5e57ec2f450d0b4b752d741 - 0.0% (1.34 KB)

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

[#005] sha256:4816ede435fa675228df42efb3fdaba7a7869f84720cfeffd7253834a0ab34f9 - 14.4% (274 MB)

[#006] sha256:d07830b227bd20508dcdc816f420bd1c123615c9006f005cd3a8b68d3f4a673c - 0.0% (1.36 KB)

[#007] sha256:66ce9fe69ed3cc3d1af2fcad898c1cf586a8e4d84d125e0eb434e51fed7c54d8 - 0.0% (1.36 KB)

[#008] sha256:e1e6c569dd2263f18ca9f89145f772d534fc725257bac8d9ea21b1b44696754d - 0.0% (1.38 KB)


History
2023-01-07 05:37:58 UTC

Apply image 10.0.17763.3887

2023-01-12 04:04:12 UTC

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

2023-01-31 19:21:20 UTC

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

2023-01-31 19:21:21 UTC

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

2023-01-31 19:21:22 UTC

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

2023-01-31 19:23:18 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,ImportExportTools,MiscellaneousTools,MonitoringTools,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-01-31 19:23:20 UTC

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

2023-01-31 19:23:21 UTC

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

2023-01-31 19:23:22 UTC

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