docker compose

This commit is contained in:
Pagwin 2026-06-10 12:44:37 -04:00
parent 5d75d80a87
commit 70c65fa178
No known key found for this signature in database
GPG key ID: 81137023740CA260

View file

@ -4,10 +4,11 @@ services:
web: web:
build: . build: .
ports: ports:
- "5000:5000" - "5555:5000"
environment: environment:
- FLASK_ENV=development - FLASK_ENV=development
- FLASK_DEBUG=1 - FLASK_DEBUG=1
volumes: volumes:
- .:/app - .:/app
command: uv run python web_solve.py command: uv run python web_solve.py
restart: unless-stopped