Namespace
library
Image / Tag
mongo:4.4.19-rc2-windowsservercore-ltsc2022
Content Digest
sha256:6875952f5c692dd44e9cf04707ed070bf18d4681db1fd7bead3602e178b936e4
Details
Created

2023-02-17 23:24:11 UTC

Size

1.79 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

e22a36213d3cdddb188814be2d5c763e2ea8de59e1b5b8e68eb04528b4d7fea8

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

4.4.19-rc2


Layers

[#000] sha256:1a65b089bc835b0c3700397b1935e97cf469b0891bb4de3942c8dfbe4b672d47 - 71.99% (1.29 GB)

[#001] sha256:d1d015a9e7adea898d81486dce8b513b0e9cbeca30904cac18c3ea98ab3be7a6 - 15.24% (280 MB)

[#002] sha256:028996d5eeb6d70e4f35b4acb3bafeee3f326bb40438911de597cad432ffdbc1 - 0.0% (1.32 KB)

[#003] sha256:f2f1b965c32954a6872e2544b97913568f444a660a20cf2853cefb9fbbe04b16 - 0.0% (1.39 KB)

[#004] sha256:5c3c9e08492779c5fe8430593c2c6ac80974896f0c09ffc1a873eff7c48c3a2e - 0.0% (1.36 KB)

[#005] sha256:5881b3309713b490cde42e36fb5193745e8f4ddaab41bf05d49009b871a98468 - 0.0% (1.39 KB)

[#006] sha256:b435126428bf624b1ec8d88c6c49958cccd6f5669386e3659a67dfda0101023a - 12.77% (235 MB)

[#007] sha256:ac040e95c94b5a192a68268a85df41ee584a6cd8f3f5501e29e52a71f914dec3 - 0.0% (1.35 KB)

[#008] sha256:42da3c0a1f190fe66eccbd2af02d888db39b9d2eb215bd318d77ea4d26f6bfc0 - 0.0% (1.36 KB)

[#009] sha256:784c1cab81a3bd43f051d0a7b038e35694f06c540cda71c47a6e81c605ad61af - 0.0% (1.38 KB)


History
2023-01-06 23:47:40 UTC

Apply image 10.0.20348.1487

2023-02-07 11:42:22 UTC

Install update 10.0.20348.1547

2023-02-16 00:38:08 UTC

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

2023-02-17 23:21:26 UTC

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

2023-02-17 23:21:28 UTC

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

2023-02-17 23:21:29 UTC

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

2023-02-17 23:24: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=Client,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 ' 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-02-17 23:24:09 UTC

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

2023-02-17 23:24:10 UTC

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

2023-02-17 23:24:11 UTC

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