ragflow/docker/docker-compose.yml

30 lines
744 B
YAML
Raw Normal View History

include:
- path: ./docker-compose-base.yml
env_file: ./.env
services:
ragflow:
depends_on:
2024-02-28 18:57:43 +08:00
mysql:
condition: service_healthy
es01:
condition: service_healthy
image: infiniflow/ragflow:v0.1.0
container_name: ragflow-server
ports:
- ${SVR_HTTP_PORT}:9380
2024-02-28 18:57:43 +08:00
- 80:80
- 443:443
volumes:
- ./service_conf.yaml:/ragflow/conf/service_conf.yaml
- ./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
environment:
- TZ=${TIMEZONE}
- HF_ENDPOINT=https://huggingface.com
networks:
- ragflow
restart: always