From 25eeb054cef4a450344e92bb4b4deabadf6c5818 Mon Sep 17 00:00:00 2001 From: Richard Date: Fri, 31 Jul 2026 10:34:12 +0200 Subject: [PATCH] fix: Remove host port 80 binding in docker-compose.yml to fix Traefik port collision in Coolify --- docker-compose.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0a5c412..13c93d7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ version: '3.8' # Coolify & Production Ready Docker Compose Configuration -# Traefik in Coolify automatically routes traffic to the 'frontend' service on port 80. -# Container names and port bindings are intentionally managed by Coolify to avoid collisions. +# Traefik in Coolify automatically routes traffic to the 'frontend' service on port 80 via expose. +# Host port bindings (ports) are omitted to avoid host port 80 conflicts with Traefik. services: db: @@ -53,8 +53,6 @@ services: dockerfile: Dockerfile expose: - "80" - ports: - - "${PORT:-80}:80" depends_on: - backend restart: unless-stopped