2025-01-28 09:51:16 +01:00
include :
- ./docker-compose-base.yml
services :
ragflow :
2025-07-27 22:17:37 -04:00
platform : linux/amd64
2025-01-28 09:51:16 +01:00
depends_on :
mysql :
condition : service_healthy
build :
context : ../
dockerfile : Dockerfile
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
networks :
- ragflow
2025-12-04 15:18:13 +08:00
restart : unless-stopped
2025-01-28 09:51:16 +01:00
# 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"
# executor:
# depends_on:
# mysql:
# condition: service_healthy
# image: ${RAGFLOW_IMAGE}
# volumes:
# - ./ragflow-logs:/ragflow/logs
# - ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
# env_file: .env
# entrypoint: "/ragflow/entrypoint_task_executor.sh 1 3"
# networks:
# - ragflow
2025-12-04 15:18:13 +08:00
# restart: unless-stopped
2025-01-28 09:51:16 +01:00
# # 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"