Change container port from 5000 to 3000 for Coolify

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
profit 2026-03-13 19:19:11 -07:00
parent 0132d1aaba
commit dcfdeaf3f8

View File

@ -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"]