feat: add minimum docker version (#1333)

This commit is contained in:
cthomas
2026-03-10 14:56:54 -07:00
committed by GitHub
parent 4451e50281
commit 95c0d8aefa
5 changed files with 1535 additions and 1433 deletions

View File

@@ -370,6 +370,10 @@ async function main(): Promise<void> {
const { checkAndAutoUpdate } = await import("./updater/auto-update");
const autoUpdatePromise = startStartupAutoUpdateCheck(checkAndAutoUpdate);
// Check Docker version for self-hosted users (non-blocking)
const { startDockerVersionCheck } = await import("./startup-docker-check");
startDockerVersionCheck().catch(() => {});
// Clean up old overflow files (non-blocking, 24h retention)
const { cleanupOldOverflowFiles } = await import("./tools/impl/overflow");
Promise.resolve().then(() => {