Files
flowsint/docker-compose.yaml
2025-02-27 23:24:13 +01:00

23 lines
392 B
YAML

version: '3.8'
services:
backend:
build: ./flowsint-api
ports:
- "5000:5000"
volumes:
- ./flowsint-api:/app
environment:
- FLASK_ENV=development
frontend:
build: ./flowsint-web
ports:
- "3000:3000"
volumes:
- ./flowsint-web:/app
depends_on:
- backend
environment:
- NEXT_PUBLIC_API_URL=http://localhost:5000