expose port 8000 in docker compose

This commit is contained in:
max 2024-12-10 12:15:07 +00:00 committed by theycallhermax
parent 944bb58bb3
commit 6f430a885b
No known key found for this signature in database
GPG key ID: 24D2803F3E25BF2D

View file

@ -15,6 +15,8 @@ services:
entrypoint: | entrypoint: |
flask init-db flask init-db
gunicorn -w 4 app:app gunicorn -w 4 app:app
ports:
- "8000:8000"
volumes: volumes:
- catask-data:/catask/config.json - catask-data:/catask/config.json
- catask-data:/catask/.env - catask-data:/catask/.env