mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
14 lines
263 B
YAML
14 lines
263 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- .:/app
|
|
- /app/.venv # Don't overwrite the virtual environment
|
|
environment:
|
|
- FLASK_ENV=development
|
|
- FLASK_DEBUG=1
|
|
restart: unless-stopped |