Compare commits

...

2 Commits

Author SHA1 Message Date
Gregor Trefalt 3cf56a3a34 Merge branch 'main' of https://gitea.trefalt.app/gtrefalt/coolify-uv-docker-streamlit-example 2025-10-28 15:06:16 +01:00
Gregor Trefalt cc2f8b965b Fix port to 3000. 2025-10-28 15:05:37 +01:00
1 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@ COPY . .
ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
EXPOSE 8501
EXPOSE 3000
ENTRYPOINT ["uv", "run", "streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
ENTRYPOINT ["uv", "run", "streamlit", "run", "app.py", "--server.port=3000", "--server.address=0.0.0.0"]