From b325eb35121e5621fc48cdb8e81afab6cd092294 Mon Sep 17 00:00:00 2001 From: Adriano Dal Pastro Date: Fri, 5 Jun 2026 08:12:20 +0000 Subject: [PATCH] fix(deploy): attach prod stack to the real Traefik network The prod compose joined the external network 'root_default', but the running Traefik instance is configured with --providers.docker.network=traefik and 'root_default' is empty. Traefik therefore had no reachable address for the tmflow-web/tmflow-api routers and served 404 for tieflow.tielogic.xyz. Point traefik-net at the external network 'traefik'. After redeploying with docker-compose.yml the site routes correctly (HTTPS 200, valid ACME cert, /api/ path-prefix router working). Co-Authored-By: Claude Opus 4.8 (1M context) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 52cfd24..fb96485 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -93,4 +93,4 @@ networks: driver: bridge traefik-net: external: true - name: root_default + name: traefik