Files
nonye/docker-compose.yml

22 lines
403 B
YAML
Raw Normal View History

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