fix: harden provider gateway upgrades

This commit is contained in:
Codex
2026-05-06 00:24:17 +00:00
parent af42002f02
commit 2dc46ce056
16 changed files with 1059 additions and 228 deletions
+4
View File
@@ -156,6 +156,8 @@ export function rebuildService(config: UniDeskConfig, service: RebuildableServic
`label=com.docker.compose.project=${config.docker.projectName}`,
"--filter",
`label=com.docker.compose.service=${service}`,
"--filter",
"label=com.docker.compose.oneoff=False",
];
const upCommand = [...compose, "up", "-d", "--no-deps", service];
const script = [
@@ -209,6 +211,8 @@ export function dockerContainers(config: UniDeskConfig): ContainerStatus[] {
"-a",
"--filter",
`label=com.docker.compose.project=${config.docker.projectName}`,
"--filter",
"label=com.docker.compose.oneoff=False",
"--format",
"{{json .}}",
], repoRoot);