From 441e3e34775f8cbe642617b1e833ced83c27a102 Mon Sep 17 00:00:00 2001 From: Hayden Liu Date: Sun, 1 Feb 2026 15:05:54 +0800 Subject: [PATCH] Rename network --- traefik/docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/traefik/docker-compose.yml b/traefik/docker-compose.yml index d051798..930eb46 100644 --- a/traefik/docker-compose.yml +++ b/traefik/docker-compose.yml @@ -3,8 +3,8 @@ services: image: traefik:v3.6 networks: - # Connect to the 'traefik_proxy' overlay network for inter-container communication across nodes - - traefik_proxy + # Connect to the 'proxy' overlay network for inter-container communication across nodes + - proxy ports: # Expose Traefik's entry points to the Swarm @@ -120,7 +120,7 @@ services: whoami: image: traefik/whoami networks: - - traefik_proxy + - proxy deploy: labels: # Enable Service discovery for Traefik @@ -137,6 +137,6 @@ services: # Define the overlay network for Swarm networks: - traefik_proxy: + proxy: driver: overlay attachable: true