Namespace
library
Image / Tag
mongo:8.0.0-rc20-windowsservercore-1809
Content Digest
sha256:a755018ad3bc1a08a12268753f79d13392a91b95363ba8d9ce2397113db7cb0d
Details
Created

2024-09-11 00:06:44 UTC

Size

2.31 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

e249a459aa7fa943c344b2421aac8f2c5bbec397fb708fc3544bcc3902eb4306

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-8.0.0-rc20-signed.msi

MONGO_VERSION

8.0.0-rc20


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 69.22% (1.6 GB)

[#001] sha256:e42d38490384e8c5b34d8319316549f8b84b69e8deeb740ab64a1b08e0c1135a - 0.0% (1.26 KB)

[#002] sha256:fa551914270f0120ecb0eb4631a9e38ef9b91e8c913132f05c66a72ea26e90d7 - 0.0% (1.27 KB)

[#003] sha256:3982d7e79eab0013ef21836319e8b742bc7b444f30e4c2e5755d580871c1ca40 - 0.0% (1.26 KB)

[#004] sha256:1d03d1d0423c3bf56aa928865345ed712e12d8431455b964edfea550f076c7bf - 0.0% (1.25 KB)

[#005] sha256:cb0749128a837f0a728c68de25dda22ca317dc2355ae5468397b657cd7724cce - 30.78% (730 MB)

[#006] sha256:07e89562c1783e92fb052963557a17db3fe12d14836616a0754c5e2b05eaaca4 - 0.0% (1.26 KB)

[#007] sha256:ae9bc8821046146a8b537dab85ff54e5ea776ee8ea76cf73da1b638030449cea - 0.0% (1.25 KB)

[#008] sha256:786c3241c1a3091b1ba49826e37f1df9dc4112a808c987ff6f56fffb80126752 - 0.0% (1.29 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2024-09-11 00:04:41 UTC

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

2024-09-11 00:04:43 UTC

powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV MONGO_VERSION=8.0.0-rc20

2024-09-11 00:04:43 UTC

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

2024-09-11 00:04:44 UTC

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

2024-09-11 00:06:42 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.';

2024-09-11 00:06:43 UTC

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

2024-09-11 00:06:43 UTC

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

2024-09-11 00:06:44 UTC

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