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.

.env 3.9KB

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