mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-12 09:54:46 -05:00
23 lines
392 B
YAML
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
|