RAGflow/management/docker-compose.yml

27 lines
625 B
YAML

services:
frontend:
image: zstar1003/ragflowplus-management-web:v0.1.0
build:
context: .
dockerfile: Dockerfile
target: frontend
ports:
- "8080:80"
depends_on:
- backend
environment:
- API_URL=http://backend:5000
backend:
image: zstar1003/ragflowplus-management-server:v0.1.0
build:
context: .
dockerfile: Dockerfile
target: backend
ports:
- "5000:5000"
environment:
- FLASK_ENV=development
- CORS_ALLOWED_ORIGINS=http://localhost:8080,http://frontend
extra_hosts:
- "host.docker.internal:host-gateway"