From b59616c7aa9bbe9d2522f442877aff7931e5bd8e Mon Sep 17 00:00:00 2001 From: David Kiania Date: Wed, 8 Apr 2026 16:49:52 +0300 Subject: [PATCH] Remove webhook_receiver host port binding (Coolify proxy handles routing) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port 8000 was already allocated on the host. On Coolify, Traefik routes external traffic to the container internally — no host port needed. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 9798852..43d12e4 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -46,8 +46,8 @@ services: timescale_db: condition: service_healthy env_file: .env - ports: - - "8000:8000" + # No host port binding — Coolify's Traefik proxy routes traffic internally. + # Set the webhook domain in Coolify UI pointing to this service on port 8000. healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8000/health"] interval: 30s