15 lines
307 B
YAML
Executable File
15 lines
307 B
YAML
Executable File
version: '3'
|
|
|
|
services:
|
|
backend:
|
|
build: .
|
|
container_name: myp-backend
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- SECRET_KEY=change_me_in_production
|
|
- DATABASE_URL=sqlite:///myp.db
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
- ./instance:/app/instance
|
|
restart: unless-stopped |