ChessNut/deploy/docker-compose.dev.yml
2025-10-13 23:10:11 +02:00

15 lines
264 B
YAML

version: '3.8'
services:
backend:
build: ../backend
ports:
- '4000:4000'
volumes:
- ../backend:/app
frontend:
image: nginx:stable-alpine
ports:
- '3000:80'
volumes:
- ../frontend/public:/usr/share/nginx/html:ro