Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

docker-compose.yml 828B

123456789101112131415161718192021222324252627282930313233
  1. include:
  2. - path: ./docker-compose-base.yml
  3. env_file: ./.env
  4. services:
  5. ragflow:
  6. depends_on:
  7. mysql:
  8. condition: service_healthy
  9. es01:
  10. condition: service_healthy
  11. image: ${RAGFLOW_IMAGE}
  12. container_name: ragflow-server
  13. ports:
  14. - ${SVR_HTTP_PORT}:9380
  15. - 80:80
  16. - 443:443
  17. - 5678:5678
  18. volumes:
  19. - ./service_conf.yaml:/ragflow/conf/service_conf.yaml
  20. - ./ragflow-logs:/ragflow/logs
  21. - ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
  22. - ./nginx/proxy.conf:/etc/nginx/proxy.conf
  23. - ./nginx/nginx.conf:/etc/nginx/nginx.conf
  24. environment:
  25. - TZ=${TIMEZONE}
  26. - HF_ENDPOINT=${HF_ENDPOINT}
  27. - MACOS=${MACOS}
  28. networks:
  29. - ragflow
  30. restart: always
  31. extra_hosts:
  32. - "host.docker.internal:host-gateway"