From 449f513a68cf29c9ed4cc224acc44d5fb303f547 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Tue, 3 Feb 2026 20:47:31 +0000 Subject: [PATCH] fix: Change API port in docker-compose from 4095 to 4096 to avoid Docker network subnetting issues --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 167ffa0..cc3d4a6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: youtube-api: build: . ports: - - "4095:4095" + - "4096:4096" environment: - FLASK_ENV=production - PYTHONPATH=/app @@ -13,7 +13,7 @@ services: - ./downloads:/app/downloads restart: unless-stopped healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:4095/health"] + test: ["CMD", "curl", "-f", "http://localhost:4096/health"] interval: 30s timeout: 10s retries: 3