14 lines
266 B
YAML
14 lines
266 B
YAML
services:
|
|
tools:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./backend:/backend
|
|
- ./frontend:/frontend
|
|
- ./backend/config:/config
|
|
working_dir: /app/backend
|
|
command: python app.py
|