Namespace
library
Image / Tag
mongo:8.3-windowsservercore-ltsc2022
Content Digest
sha256:74355f7947262d23dcc09dba91bf4114fa31d62dbe841a1301c1f356d2fd3144
Details
Created

2026-06-10 20:16:08 UTC

Size

2.84 GB

Content Digest
Environment
MONGO_DOWNLOAD_SHA256

2ee9df9b622c5c7eac0fcc46fab6d3e179a988b151c9919f8c7870ea8b50e8e3

MONGO_DOWNLOAD_URL

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

MONGO_VERSION

8.3.3


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 48.77% (1.39 GB)

[#001] sha256:6897a04901ec162be0eabd7eb636b5ac50d6e37c880f1db618610f2d777b1ce6 - 21.06% (613 MB)

[#002] sha256:c27f5d824ecfc0d0bb45da3e65f136429784e23bf00a0f8d42a2eae26e5b121d - 0.0% (1.29 KB)

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

[#004] sha256:42f8c13d22abd1f1f10253b606b882439a7abf28eed7467c6c4e48335b4afcb9 - 0.0% (1.3 KB)

[#005] sha256:fb1d4852e522413268212a4c1bbfc5afaff76da0aff19639aa19703f9842a051 - 0.0% (1.3 KB)

[#006] sha256:6563816e6ec12f165e8b10ff24ddfc20e62f898cea4c1ae7159812d9e62ca971 - 30.16% (878 MB)

[#007] sha256:9a86d1cf4b796b571419d40a2e68e83397dc143be92902ac5a4dca04a502edd8 - 0.0% (1.26 KB)

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

[#009] sha256:38ec5425205f54cd4135b9c4a4c2f74b4f58bc1f14a479f6a076ff10aa3cab5d - 0.0% (1.29 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2026-06-07 06:43:23 UTC

Install update 10.0.20348.5256

2026-06-10 20:13:00 UTC

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

2026-06-10 20:13:03 UTC

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

2026-06-10 20:13:04 UTC

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

2026-06-10 20:13:05 UTC

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

2026-06-10 20:16:07 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-10 20:16:07 UTC

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

2026-06-10 20:16:08 UTC

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

2026-06-10 20:16:08 UTC

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