Namespace
library
Image / Tag
mongo:8.3-windowsservercore-ltsc2025
Content Digest
sha256:201d17c43a5773bbe23c8a4fee84b7ab4817aee83f04e077707f9583a3b2ca93
Details
Created

2026-06-12 19:16:44 UTC

Size

2.98 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

46f080a02fb2c1f0371210fc1f3e9a32d92403fdfa7bdcb911f6fa02f4beaa94

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.3.4


Layers

[#000] sha256:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 47.59% (1.42 GB)

[#001] sha256:2ee71d57b2226db82d002abc39a97b7dd144f007db435566364a0285bf115b83 - 23.63% (721 MB)

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

[#003] sha256:10d94adbadc63789bf015d0138e8ce1a96c314345007077ef2697577403dc11c - 0.0% (1.27 KB)

[#004] sha256:53fa6d34fbe9c597d550899f431f38929458c68428013878a21d9b634ad17d1f - 0.0% (1.25 KB)

[#005] sha256:8120c6c38796817553ee6cb6368d8e306c031484081e76f53e852aef38f70db1 - 0.0% (1.25 KB)

[#006] sha256:8f041abb0aa644c758a97e2d38737566f4f2d7af96e68652329153bfc9571030 - 28.78% (878 MB)

[#007] sha256:4808205b4f6c31f61c88b1352323bd9d5bc77466c831dd85c0d5bf16fc3454e8 - 0.0% (1.27 KB)

[#008] sha256:a309c069908adf47acf64b11b5b7f6aec56db7c5b17b6a8cfeef370126a1e193 - 0.0% (1.25 KB)

[#009] sha256:c84e8508b6866809b0813221503b611087b1c9015703ccef2293e4a1a4d32eb8 - 0.0% (1.23 KB)


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-06-07 07:36:39 UTC

Install update 10.0.26100.32995

2026-06-12 19:12:55 UTC

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

2026-06-12 19:12:59 UTC

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

2026-06-12 19:13:01 UTC

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

2026-06-12 19:13:02 UTC

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

2026-06-12 19:16:41 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.';

2026-06-12 19:16:43 UTC

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

2026-06-12 19:16:43 UTC

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

2026-06-12 19:16:44 UTC

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