Namespace
library
Image / Tag
mongo:8.0.0-rc16-windowsservercore-1809
Content Digest
sha256:8dc71abffef7a76dd52d5784e0e37205412e5debdb53bffa50c2e967a2631143
Details
Created

2024-08-06 00:59:16 UTC

Size

2.8 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

5ed91c36a62fb0957e30762fd80b6662e5eefda277eb2fd7657b0ca7d618aba2

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.0.0-rc16


Layers

[#000] sha256:c9226d61d3bdbf9f09821b32f5878623b8daaa5fb4f875cb63c199f87a26d57e - 54.94% (1.54 GB)

[#001] sha256:b5f98e7fe87492b83d7775a348ae0c94412b638ab5bba1a80b03c3a547708acd - 19.56% (561 MB)

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

[#003] sha256:6d99647fe9f87bb79f77e0a14c590e712d411b1fe8096de8763ed8d001e9d68b - 0.0% (1.25 KB)

[#004] sha256:903a196c3afa421a158413bdce6b7fb12f649799b7df156812e9d732abced7df - 0.0% (1.27 KB)

[#005] sha256:b7932f0e0131ffd105b0013587d9f0d303632f6ad01bdbb81a9fea2b928480c0 - 0.0% (1.26 KB)

[#006] sha256:51ade197e9b6284ba03171f2ee0757684e95030c6e5633ceffa61dd7319e0ccc - 25.5% (731 MB)

[#007] sha256:27ef2b864b858413ce686fb773cce5ce5857999fb2431fb9cd9af63e0f678374 - 0.0% (1.27 KB)

[#008] sha256:77dc5fd7217772827cac8506ccd5d02c419567c4fc308e260f3369666f357457 - 0.0% (1.27 KB)

[#009] sha256:fe20a43d9eb93d06b39a68d3c8624bcb7a65327b2842c761eb114e25b8eab726 - 0.0% (1.27 KB)


History
2023-06-08 12:58:24 UTC

Apply image 10.0.17763.4499

2024-07-03 00:34:32 UTC

Install update 10.0.17763.6054

2024-08-06 00:55:40 UTC

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

2024-08-06 00:55:41 UTC

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

2024-08-06 00:55:42 UTC

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

2024-08-06 00:55:42 UTC

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

2024-08-06 00:59:14 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-08-06 00:59:15 UTC

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

2024-08-06 00:59:15 UTC

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

2024-08-06 00:59:16 UTC

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