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.

1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
1 ano atrás
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Version of Elastic products
  2. STACK_VERSION=8.11.3
  3. # Port to expose Elasticsearch HTTP API to the host
  4. ES_PORT=1200
  5. # Set the Elasticsearch password
  6. ELASTIC_PASSWORD=infini_rag_flow
  7. # Port to expose Kibana to the host
  8. KIBANA_PORT=6601
  9. KIBANA_USER=rag_flow
  10. KIBANA_PASSWORD=infini_rag_flow
  11. # Update according to the available host memory (in bytes)
  12. MEM_LIMIT=8073741824
  13. MYSQL_PASSWORD=infini_rag_flow
  14. MYSQL_PORT=5455
  15. # Port to expose minio to the host
  16. MINIO_CONSOLE_PORT=9001
  17. MINIO_PORT=9000
  18. MINIO_USER=rag_flow
  19. MINIO_PASSWORD=infini_rag_flow
  20. REDIS_PORT=6379
  21. REDIS_PASSWORD=infini_rag_flow
  22. SVR_HTTP_PORT=9380
  23. # the Docker image for the slim version
  24. RAGFLOW_IMAGE=infiniflow/ragflow:dev-slim
  25. # If you cannot download the RAGFlow Docker image, try uncommenting either of the following hub.docker.com mirrors:
  26. # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim
  27. # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim
  28. # To download the RAGFlow Docker image with embedding models, modify the line above as follows:
  29. # RAGFLOW_IMAGE=infiniflow/ragflow:dev
  30. # This Docker image includes the following four models:
  31. # - BAAI/bge-large-zh-v1.5
  32. # - BAAI/bge-reranker-v2-m3
  33. # - maidalun1020/bce-embedding-base_v1
  34. # - maidalun1020/bce-reranker-base_v1
  35. # And the following models will be downloaded if you select them in the RAGFlow UI.
  36. # - BAAI/bge-base-en-v1.5
  37. # - BAAI/bge-large-en-v1.5
  38. # - BAAI/bge-small-en-v1.5
  39. # - BAAI/bge-small-zh-v1.5
  40. # - jinaai/jina-embeddings-v2-base-en
  41. # - jinaai/jina-embeddings-v2-small-en
  42. # - nomic-ai/nomic-embed-text-v1.5
  43. # - sentence-transformers/all-MiniLM-L6-v2
  44. # If you cannot download the RAGFlow Docker image, try uncommenting either of the following hub.docker.com mirrors:
  45. # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev
  46. # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev
  47. TIMEZONE='Asia/Shanghai'
  48. # If you cannot download the RAGFlow Docker image, try uncommenting the following huggingface.co mirror:
  49. # HF_ENDPOINT=https://hf-mirror.com
  50. ######## OS setup for ES ###########
  51. # sysctl vm.max_map_count
  52. # sudo sysctl -w vm.max_map_count=262144
  53. # Note that this change is not permanent and will be reset after a system reboot.
  54. # To make your change permanent, update /etc/sysctl.conf by:
  55. # Adding or modifying the following line:
  56. # vm.max_map_count=262144