Namespace
library
Image / Tag
mongo:7.0.14-windowsservercore-1809
Content Digest
sha256:b1569400303adb057f775f7f8553e8c2735237a9d9a7a0087a03b9df4a8bfabd
Details
Created

2024-10-09 23:11:09 UTC

Size

2.34 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

2471a7919223aee2f14443a31c7a1cbfb14c5149b8ecaea05710286731908499

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

7.0.14


Layers

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

[#001] sha256:eec1ab8e4a3936959c2381d3aaa9aaf9caf01f82fb701f2b4c3cc3dbf6d035dd - 7.23% (173 MB)

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

[#003] sha256:d9be0808cede504fdbb3b0677537023b99b996b8aa8b728dd6ae923bfcc56775 - 0.0% (1.28 KB)

[#004] sha256:d39dae233b9dec8c9aa472100a8436f12435a7835d7017d1a87d53cdedb9f1e2 - 0.0% (1.26 KB)

[#005] sha256:1794cb2e9960ba2f42373246684b8663bbb0885f2c2623b225ee0995e1afd88e - 0.0% (1.25 KB)

[#006] sha256:30e226e5a96b13f7bc0ee340c514a8e0a9e59c4161d10a282868e0ee6c78f81d - 24.27% (581 MB)

[#007] sha256:3ffe719d398d14b3fbc25dcf5a2a322913b351612322a0181546fb81d6076112 - 0.0% (1.26 KB)

[#008] sha256:58b4ef8d72ef87315573617e01a3f322c115568588c1b0abeee397447cd32dfe - 0.0% (1.26 KB)

[#009] sha256:5203781adee9d7948312b018ca6d39ec65571cb5175cf9ab6533bf65a26471b3 - 0.0% (1.26 KB)


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

Apply image 10.0.17763.6293

2024-10-04 21:48:44 UTC

Install update 10.0.17763.6414

2024-10-09 23:08:40 UTC

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

2024-10-09 23:08:42 UTC

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

2024-10-09 23:08:43 UTC

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

2024-10-09 23:08:45 UTC

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

2024-10-09 23:11:06 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-10-09 23:11:07 UTC

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

2024-10-09 23:11:08 UTC

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

2024-10-09 23:11:09 UTC

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