2025-03-24 11:19:28 +08:00
include :
- ./docker-compose-base.yml
services :
ragflow :
depends_on :
mysql :
condition : service_healthy
image : ${RAGFLOW_IMAGE}
container_name : ragflow-server
ports :
- ${SVR_HTTP_PORT}:9380
- 80 : 80
- 443 : 443
volumes :
- ./ragflow-logs:/ragflow/logs
- ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
- ./nginx/proxy.conf:/etc/nginx/proxy.conf
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
env_file : .env
environment :
- TZ=${TIMEZONE}
- HF_ENDPOINT=${HF_ENDPOINT}
- MACOS=${MACOS}
networks :
- ragflow
restart : on -failure
# https://docs.docker.com/engine/daemon/prometheus/#create-a-prometheus-configuration
# If you're using Docker Desktop, the --add-host flag is optional. This flag makes sure that the host's internal IP gets exposed to the Prometheus container.
extra_hosts :
- "host.docker.internal:host-gateway"
2025-04-06 00:54:39 +08:00
2025-04-06 01:01:36 +08:00
# 新增加的用户后台信息管理系统
2025-04-09 23:58:17 +08:00
frontend :
image : zstar1003/ragflowplus-management-web:v0.1.2
build :
context : .
dockerfile : Dockerfile
target : frontend
2025-04-06 01:01:36 +08:00
ports :
- "8888:80"
2025-04-06 00:54:39 +08:00
depends_on :
2025-04-09 23:58:17 +08:00
- backend
2025-04-06 00:54:39 +08:00
environment :
2025-04-09 23:58:17 +08:00
- API_BASE_URL=/api
2025-04-06 00:54:39 +08:00
networks :
- ragflow
2025-04-09 23:58:17 +08:00
backend :
image : zstar1003/ragflowplus-management-server:v0.1.2
build :
context : .
dockerfile : Dockerfile
target : backend
2025-04-06 00:54:39 +08:00
ports :
- "5000:5000"
environment :
- FLASK_ENV=development
2025-04-09 23:58:17 +08:00
- CORS_ALLOWED_ORIGINS=http://frontend
- MANAGEMENT_ADMIN_USERNAME=${MANAGEMENT_ADMIN_USERNAME:-admin}
- MANAGEMENT_ADMIN_PASSWORD=${MANAGEMENT_ADMIN_PASSWORD:-12345678}
- MANAGEMENT_JWT_SECRET=${MANAGEMENT_JWT_SECRET:-12345678}
2025-04-06 00:54:39 +08:00
extra_hosts :
- "host.docker.internal:host-gateway"
networks :
- ragflow