Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # The type of doc engine to use.
  2. # Supported values are `elasticsearch`, `infinity`.
  3. DOC_ENGINE=${DOC_ENGINE:-elasticsearch}
  4. # ------------------------------
  5. # docker env var for specifying vector db type at startup
  6. # (based on the vector db type, the corresponding docker
  7. # compose profile will be used)
  8. # ------------------------------
  9. COMPOSE_PROFILES=${DOC_ENGINE}
  10. # The version of Elasticsearch.
  11. STACK_VERSION=8.11.3
  12. # The hostname where the Elasticsearch service is exposed
  13. ES_HOST=es01
  14. # The port used to expose the Elasticsearch service to the host machine,
  15. # allowing EXTERNAL access to the service running inside the Docker container.
  16. ES_PORT=1200
  17. # The password for Elasticsearch.
  18. # When updated, you must revise the `es.password` entry in service_conf.yaml accordingly.
  19. ELASTIC_PASSWORD=infini_rag_flow
  20. # The port used to expose the Kibana service to the host machine,
  21. # allowing EXTERNAL access to the service running inside the Docker container.
  22. KIBANA_PORT=6601
  23. KIBANA_USER=rag_flow
  24. KIBANA_PASSWORD=infini_rag_flow
  25. # The maximum amount of the memory, in bytes, that a specific Docker container can use while running.
  26. # Update it according to the available memory in the host machine.
  27. MEM_LIMIT=8073741824
  28. # Port to expose Infinity API to the host
  29. INFINITY_THRIFT_PORT=23817
  30. INFINITY_HTTP_PORT=23820
  31. INFINITY_PSQL_PORT=5432
  32. # The password for MySQL.
  33. # When updated, you must revise the `mysql.password` entry in service_conf.yaml.
  34. MYSQL_PASSWORD=infini_rag_flow
  35. # The hostname where the MySQL service is exposed
  36. MYSQL_HOST=mysql
  37. # The database of the MySQL service to use
  38. MYSQL_DBNAME=rag_flow
  39. # The port used to expose the MySQL service to the host machine,
  40. # allowing EXTERNAL access to the MySQL database running inside the Docker container.
  41. MYSQL_PORT=5455
  42. # The hostname where the MySQL service is exposed
  43. MINIO_HOST=minio
  44. # The port used to expose the MinIO console interface to the host machine,
  45. # allowing EXTERNAL access to the web-based console running inside the Docker container.
  46. MINIO_CONSOLE_PORT=9001
  47. # The port used to expose the MinIO API service to the host machine,
  48. # allowing EXTERNAL access to the MinIO object storage service running inside the Docker container.
  49. MINIO_PORT=9000
  50. # The username for MinIO.
  51. # When updated, you must revise the `minio.user` entry in service_conf.yaml accordingly.
  52. MINIO_USER=rag_flow
  53. # The password for MinIO.
  54. # When updated, you must revise the `minio.password` entry in service_conf.yaml accordingly.
  55. MINIO_PASSWORD=infini_rag_flow
  56. # The hostname where the Redis service is exposed
  57. REDIS_HOST=redis
  58. # The port used to expose the Redis service to the host machine,
  59. # allowing EXTERNAL access to the Redis service running inside the Docker container.
  60. REDIS_PORT=6379
  61. # The password for Redis.
  62. # When updated, you must revise the `redis.password` entry in service_conf.yaml accordingly.
  63. REDIS_PASSWORD=infini_rag_flow
  64. # The port used to expose RAGFlow's HTTP API service to the host machine,
  65. # allowing EXTERNAL access to the service running inside the Docker container.
  66. SVR_HTTP_PORT=9380
  67. # The RAGFlow Docker image to download.
  68. # Defaults to the dev-slim edition, which is the RAGFlow Docker image without embedding models.
  69. RAGFLOW_IMAGE=infiniflow/ragflow:dev-slim
  70. #
  71. # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
  72. # RAGFLOW_IMAGE=infiniflow/ragflow:dev
  73. #
  74. # The Docker image of the dev edition includes:
  75. # - Embedded embedding models:
  76. # - BAAI/bge-large-zh-v1.5
  77. # - BAAI/bge-reranker-v2-m3
  78. # - maidalun1020/bce-embedding-base_v1
  79. # - maidalun1020/bce-reranker-base_v1
  80. # - Embedding models that will be downloaded once you select them in the RAGFlow UI:
  81. # - BAAI/bge-base-en-v1.5
  82. # - BAAI/bge-large-en-v1.5
  83. # - BAAI/bge-small-en-v1.5
  84. # - BAAI/bge-small-zh-v1.5
  85. # - jinaai/jina-embeddings-v2-base-en
  86. # - jinaai/jina-embeddings-v2-small-en
  87. # - nomic-ai/nomic-embed-text-v1.5
  88. # - sentence-transformers/all-MiniLM-L6-v2
  89. #
  90. #
  91. # If you cannot download the RAGFlow Docker image:
  92. #
  93. # - For the `dev-slim` edition, uncomment either of the following:
  94. # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim
  95. # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim
  96. #
  97. # - For the `dev-slim` edition, uncomment either of the following:
  98. # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev
  99. # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev
  100. # The local time zone.
  101. TIMEZONE='Asia/Shanghai'
  102. # Uncomment the following line if you have limited access to huggingface.co:
  103. # HF_ENDPOINT=https://hf-mirror.com
  104. # Optimizations for MacOS
  105. # Uncomment the following line if your OS is MacOS:
  106. # MACOS=1