Files
nonye/docker-compose.yml
2025-07-18 18:25:08 +08:00

22 lines
403 B
YAML

version: '3.8'
services:
backend:
build: ./back
container_name: backend
ports:
- "7792:5000"
volumes:
- ./back:/app
environment:
- FLASK_ENV=development
depends_on:
- frontend
frontend:
build: ./platform
container_name: frontend
ports:
- "7793:5173"
volumes:
- ./platform:/app
environment:
- NODE_ENV=development