Remove webhook_receiver host port binding (Coolify proxy handles routing)
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 <noreply@anthropic.com>
This commit is contained in:
parent
2fbd286d29
commit
b59616c7aa
1 changed files with 2 additions and 2 deletions
|
|
@ -46,8 +46,8 @@ services:
|
||||||
timescale_db:
|
timescale_db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
env_file: .env
|
env_file: .env
|
||||||
ports:
|
# No host port binding — Coolify's Traefik proxy routes traffic internally.
|
||||||
- "8000:8000"
|
# Set the webhook domain in Coolify UI pointing to this service on port 8000.
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue