Fix volume path in Dockerfile and update docker-compose.yml for environment variables and network configuration

This commit is contained in:
Joakim Hellsén 2026-01-09 21:18:11 +01:00
commit fa197cf096
No known key found for this signature in database
2 changed files with 23 additions and 13 deletions

View file

@ -17,7 +17,7 @@ ENV PATH="/app/.venv/bin:$PATH"
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD curl -f http://localhost:8000/ || exit 1
VOLUME ["/home/root/.local/share/TTVDrops"]
VOLUME ["/root/.local/share/TTVDrops"]
EXPOSE 8000
ENTRYPOINT [ "/app/start.sh" ]
CMD ["uv", "run", "gunicorn", "config.wsgi:application", "--workers", "27", "--bind", "0.0.0.0:8000"]