16 lines
288 B
YAML
16 lines
288 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "6000:6000"
|
|
volumes:
|
|
- ./website:/app/website
|
|
environment:
|
|
- FLASK_ENV=development
|
|
- FLASK_DEBUG=1
|
|
command: python website/app.py
|
|
restart: always |