ragflow
[RAGFlow](https://ragflow.io/) is an open-source RAG (Retrieval-Augmented Generation) engine .
1M+
If you have not installed Docker on your local machine (Windows, Mac, or Linux), see Install Docker Engine.
Ensure vm.max_map_count >= 262144:
To check the value of
vm.max_map_count:$ sysctl vm.max_map_countReset
vm.max_map_countto a value at least 262144 if it is not.# In this case, we set it to 262144: $ sudo sysctl -w vm.max_map_count=262144This change will be reset after a system reboot. To ensure your change remains permanent, add or update the
vm.max_map_countvalue in /etc/sysctl.conf accordingly:vm.max_map_count=262144
Clone the repo:
$ git clone https://github.com/infiniflow/ragflow.git
Start up the server using the pre-built Docker images:
The command below downloads the
v0.15.0-slimedition of the RAGFlow Docker image. Refer to the following table for descriptions of different RAGFlow editions. To download an RAGFlow edition different fromv0.14.1-slim, update theRAGFLOW_IMAGEvariable accordingly in docker/.env before usingdocker composeto start the server. For example: setRAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1for the full editionv0.14.1.
$ cd ragflow
$ docker compose -f docker/docker-compose.yml up -d
| RAGFlow image tag | Image size (GB) | Has embedding models? | Stable? |
|---|---|---|---|
| v0.15.0 | ≈9 | :heavy_check_mark: | Stable release |
| v0.15.0-slim | ≈2 | ❌ | Stable release |
| nightly | ≈9 | :heavy_check_mark: | Unstable nightly build |
| nightly-slim | ≈2 | ❌ | Unstable nightly build |
Check the server status after having the server up and running:
$ docker logs -f ragflow-server
The following output confirms a successful launch of the system:
____ ___ ______ ______ __
/ __ \ / | / ____// ____// /____ _ __
/ /_/ // /| | / / __ / /_ / // __ \| | /| / /
/ _, _// ___ |/ /_/ // __/ / // /_/ /| |/ |/ /
/_/ |_|/_/ |_|\____//_/ /_/ \____/ |__/|__/
* Running on all addresses (0.0.0.0)
* Running on http://127.0.0.1:9380
* Running on http://x.x.x.x:9380
INFO:werkzeug:Press CTRL+C to quit
If you skip this confirmation step and directly log in to RAGFlow, your browser may prompt a
network anormalerror because, at that moment, your RAGFlow may not be fully initialized.
In your web browser, enter the IP address of your server and log in to RAGFlow.
With the default settings, you only need to enter
http://IP_OF_YOUR_MACHINE(sans port number) as the default HTTP serving port80can be omitted when using the default configurations.
In service_conf.yaml.template, select the desired LLM factory in user_default_llm and update
the API_KEY field with the corresponding API key.
See llm_api_key_setup for more information.
The show is on!
When it comes to system configurations, you will need to manage the following files:
SVR_HTTP_PORT, MYSQL_PASSWORD, and
MINIO_PASSWORD.The ./docker/README file provides a detailed description of the environment settings and service configurations which can be used as
${ENV_VARS}in the service_conf.yaml.template file.
To update the default HTTP serving port (80), go to docker-compose.yml and change 80:80
to <YOUR_SERVING_PORT>:80.
Updates to the above configurations require a reboot of all containers to take effect:
$ docker compose -f docker/docker-compose.yml up -d
RAGFlow uses Elasticsearch by default for storing full text and vectors. To switch to Infinity, follow these steps:
Stop all running containers:
$ docker compose -f docker/docker-compose.yml down -v
Set DOC_ENGINE in docker/.env to infinity.
Start the containers:
$ docker compose -f docker/docker-compose.yml up -d
Warning
Switching to Infinity on a Linux/arm64 machine is not yet officially supported.
Content type
Image
Digest
sha256:acbf3d902…
Size
3 GB
Last updated
about 20 hours ago
docker pull infiniflow/ragflow