Files
kopilka/docker-compose.yml

26 lines
429 B
YAML

services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8765:8765"
environment:
- PYTHONUNBUFFERED=1
volumes:
- kopilka-data:/app/data
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "4321:4321"
depends_on:
- backend
restart: unless-stopped
volumes:
kopilka-data: