Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

docker-compose-CN-oc9.yml 1.1KB

123456789101112131415161718192021222324252627282930313233
  1. # The RAGFlow team do not actively maintain docker-compose-CN-oc9.yml, so use them at your own risk.
  2. # However, you are welcome to file a pull request to improve it.
  3. include:
  4. - ./docker-compose-base.yml
  5. services:
  6. ragflow:
  7. depends_on:
  8. mysql:
  9. condition: service_healthy
  10. image: edwardelric233/ragflow:oc9
  11. container_name: ragflow-server
  12. ports:
  13. - ${SVR_HTTP_PORT}:9380
  14. - 80:80
  15. - 443:443
  16. volumes:
  17. - ./ragflow-logs:/ragflow/logs
  18. - ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
  19. - ./nginx/proxy.conf:/etc/nginx/proxy.conf
  20. - ./nginx/nginx.conf:/etc/nginx/nginx.conf
  21. env_file: .env
  22. environment:
  23. - TZ=${TIMEZONE}
  24. - HF_ENDPOINT=${HF_ENDPOINT}
  25. - MACOS=${MACOS}
  26. networks:
  27. - ragflow
  28. restart: on-failure
  29. # https://docs.docker.com/engine/daemon/prometheus/#create-a-prometheus-configuration
  30. # 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.
  31. extra_hosts:
  32. - "host.docker.internal:host-gateway"