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