SchiriTrainer2/docker-compose.yml
2025-07-25 01:24:32 +02:00

21 lines
344 B
YAML

version: '3.8'
services:
backend:
build:
context: ./backend
container_name: schiri-backend
ports:
- "3000:3000"
restart: unless-stopped
frontend:
build:
context: ./frontend
container_name: schiri-frontend
ports:
- "5001:80"
restart: unless-stopped
depends_on:
- backend