fix: add coolify external network to frontend for Traefik routing

Coolify does not automatically add the coolify network to docker-compose services.
The frontend needs to be on the coolify network for Traefik to route traffic to it.
This commit is contained in:
Agent Zero
2026-07-15 13:14:03 +02:00
parent e5606c64c5
commit f815e64499
+3
View File
@@ -15,6 +15,7 @@ services:
start_period: 15s start_period: 15s
networks: networks:
- hms-network - hms-network
- coolify
backend: backend:
build: ./backend build: ./backend
depends_on: depends_on:
@@ -90,6 +91,8 @@ services:
networks: networks:
hms-network: hms-network:
driver: bridge driver: bridge
coolify:
external: true
volumes: volumes:
postgres_data: null postgres_data: null
redis_data: null redis_data: null