Namespace
library
Image / Tag
mongo:7.0.4-rc0-windowsservercore-1809
Content Digest
sha256:d4e1d7d8db074392ef4609fb7911f073b18f16a41d64d80732e26969df6e7af7
Details
Created

2023-11-16 03:24:31 UTC

Size

2.49 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

83bf88e570063eabb56e0c244a85240620e937273deecfbc9e9c5090ada4ebbc

MONGO_DOWNLOAD_URL

https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.4-rc0-signed.msi

MONGO_VERSION

7.0.4-rc0


Layers

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

[#001] sha256:4f7bb9e009deb881cb90e8b4318258e03882de9bc9b312b763654b59cd13d0bb - 15.23% (388 MB)

[#002] sha256:61e4111e1324ff2110def2382c3796071edd92a76a262efa6c0657d549b64496 - 0.0% (1.38 KB)

[#003] sha256:533a4cea74e77cd1dfaa19bf2175db357655ef7054c34fee6b2304a83e1d2293 - 0.0% (1.41 KB)

[#004] sha256:6b814bc4dfba98752748e29f334142f3acd366f6c50602e807d4e1ec018566cb - 0.0% (1.39 KB)

[#005] sha256:25744d53643110a6e782b501d70538b86ae0f59ef079f358f4efa98d4d046e6c - 0.0% (1.41 KB)

[#006] sha256:f9215f202f7421bdbee5045e2702567a0ffe0b4157c6510d808af69192ebdff3 - 22.96% (585 MB)

[#007] sha256:09caa9bd0ea01dbf048fa6ee5405431461162d63dcb1081aad6d545780a33d90 - 0.0% (1.37 KB)

[#008] sha256:95384ac70a4db6c098d336761525c8f3787b01bfacbd29b3d753a08655e34ab2 - 0.0% (1.36 KB)

[#009] sha256:862516238ed35860f3dd5529dcdbd8e647f201d74f744b05bf83f348232c7b15 - 0.0% (1.38 KB)


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

Apply image 10.0.17763.4499

2023-11-09 17:56:40 UTC

Install update 10.0.17763.5122

2023-11-16 03:20:52 UTC

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

2023-11-16 03:20:53 UTC

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

2023-11-16 03:20:54 UTC

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

2023-11-16 03:20:55 UTC

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

2023-11-16 03:24:26 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-11-16 03:24:29 UTC

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

2023-11-16 03:24:30 UTC

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

2023-11-16 03:24:31 UTC

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