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 3.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. # The password for MySQL.
  18. # When updated, you must revise the `mysql.password` entry in service_conf.yaml.
  19. MYSQL_PASSWORD=infini_rag_flow
  20. # The port used to expose the MySQL service to the host machine,
  21. # allowing EXTERNAL access to the MySQL database running inside the Docker container.
  22. MYSQL_PORT=5455
  23. # The port used to expose the MinIO console interface to the host machine,
  24. # allowing EXTERNAL access to the web-based console running inside the Docker container.
  25. MINIO_CONSOLE_PORT=9001
  26. # The port used to expose the MinIO API service to the host machine,
  27. # allowing EXTERNAL access to the MinIO object storage service running inside the Docker container.
  28. MINIO_PORT=9000
  29. # The username for MinIO.
  30. # When updated, you must revise the `minio.user` entry in service_conf.yaml accordingly.
  31. MINIO_USER=rag_flow
  32. # The password for MinIO.
  33. # When updated, you must revise the `minio.password` entry in service_conf.yaml accordingly.
  34. MINIO_PASSWORD=infini_rag_flow
  35. # The port used to expose the Redis service to the host machine,
  36. # allowing EXTERNAL access to the Redis service running inside the Docker container.
  37. REDIS_PORT=6379
  38. # The password for Redis.
  39. # When updated, you must revise the `redis.password` entry in service_conf.yaml accordingly.
  40. REDIS_PASSWORD=infini_rag_flow
  41. # The port used to expose RAGFlow's HTTP API service to the host machine,
  42. # allowing EXTERNAL access to the service running inside the Docker container.
  43. SVR_HTTP_PORT=9380
  44. # The RAGFlow Docker image to download.
  45. # Defaults to the dev-slim edition, which is the RAGFlow Docker image without embedding models.
  46. RAGFLOW_IMAGE=infiniflow/ragflow:dev-slim
  47. #
  48. # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
  49. # RAGFLOW_IMAGE=infiniflow/ragflow:dev
  50. #
  51. # The Docker image of the dev edition includes:
  52. # - Embedded embedding models:
  53. # - BAAI/bge-large-zh-v1.5
  54. # - BAAI/bge-reranker-v2-m3
  55. # - maidalun1020/bce-embedding-base_v1
  56. # - maidalun1020/bce-reranker-base_v1
  57. # - Embedding models that will be downloaded once you select them in the RAGFlow UI:
  58. # - BAAI/bge-base-en-v1.5
  59. # - BAAI/bge-large-en-v1.5
  60. # - BAAI/bge-small-en-v1.5
  61. # - BAAI/bge-small-zh-v1.5
  62. # - jinaai/jina-embeddings-v2-base-en
  63. # - jinaai/jina-embeddings-v2-small-en
  64. # - nomic-ai/nomic-embed-text-v1.5
  65. # - sentence-transformers/all-MiniLM-L6-v2
  66. #
  67. #
  68. # If you cannot download the RAGFlow Docker image:
  69. #
  70. # - For the `dev-slim` edition, uncomment either of the following:
  71. # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim
  72. # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim
  73. #
  74. # - For the `dev-slim` edition, uncomment either of the following:
  75. # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev
  76. # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev
  77. # The local time zone.
  78. TIMEZONE='Asia/Shanghai'
  79. # Uncomment the following line if you have limited access to huggingface.co:
  80. # HF_ENDPOINT=https://hf-mirror.com
  81. # Optimizations for MacOS
  82. # Uncomment the following line if your OS is MacOS:
  83. # MACOS=1