Change panel port from 4000 to 20000

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
test2
2026-07-25 21:15:48 +03:00
co-authored by Cursor
parent 35d3a3b888
commit fa8e886c1c
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ COPY scripts ./scripts
RUN sed -i 's/\r$//' /app/scripts/entrypoint.sh && chmod +x /app/scripts/entrypoint.sh
EXPOSE 4000
EXPOSE 20000
ENTRYPOINT ["/app/scripts/entrypoint.sh"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "4000"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "20000"]