From dcfdeaf3f88e26011be3aaf34fb0bbdfdfe2a2b4 Mon Sep 17 00:00:00 2001 From: profit Date: Fri, 13 Mar 2026 19:19:11 -0700 Subject: [PATCH] Change container port from 5000 to 3000 for Coolify Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 779c255..b8bc9cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,6 @@ RUN mkdir -p /app/state/queue /app/media/music /app/media/podcasts /app/media/fa # Initialize the database RUN python scripts/init_db.py /app/state/radio.db -EXPOSE 5000 +EXPOSE 3000 -CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "120", "web.app:app"] +CMD ["gunicorn", "--bind", "0.0.0.0:3000", "--workers", "2", "--timeout", "120", "web.app:app"]