Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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