From 4fdc17917d3033a90186132a383766d40029f2f9 Mon Sep 17 00:00:00 2001 From: oabrivard Date: Thu, 2 Apr 2026 10:46:25 +0200 Subject: [PATCH] fix: bind app to localhost:8005 for Caddy reverse proxy Host port changed from 8080 to 8005 and bound to 127.0.0.1 only so traffic goes through Caddy (HTTPS) instead of being exposed directly. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5de8aed..0fcf624 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ services: networks: - internal ports: - - "${PORT:-8080}:8080" + - "127.0.0.1:${PORT:-8005}:8080" healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080/api/v1/health"] interval: 30s