You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.env 4.3KB

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