Skip to content

Commit f306aee

Browse files
committed
Fix proxy label parsing
1 parent bfecbdf commit f306aee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/terrarium-traefik-sync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ function buildDynamicConfig(containers: LxcInstance[]): {
213213

214214
for (const container of containers) {
215215
const name = container.name ?? "unknown";
216-
const label = container.config?.user.proxy?.trim() ?? "";
216+
const label = container.config?.["user.proxy"]?.trim() ?? "";
217217
if (!label) {
218218
continue;
219219
}

0 commit comments

Comments
 (0)