Files
flask-practice/compose.yaml
2025-09-18 16:59:30 -05:00

13 lines
317 B
YAML

services:
web:
build:
context: app
target: builder
# flask requires SIGINT to stop gracefully
# (default stop signal from Compose is SIGTERM)
stop_signal: SIGINT
restart: always
ports:
- '8000:8000'
volumes:
- /Users/nico/Documents/GitHub/flask-practice/app:/app