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.

upgrade_ragflow.md 988B


sidebar_position: 7

slug: /upgrade_ragflow

Upgrade RAGFlow

You can upgrade RAGFlow to dev version or the latest version:

  • A Dev version (Development version) is the latest, tested image.
  • The latest version is the most recent, officially published release.

Upgrade RAGFlow to the dev version

  1. Update ragflow/docker/.env as follows:
   RAGFLOW_IMAGE=infiniflow/ragflow:dev
  1. Pull the latest code from inside Docker:
   git pull
  1. Update RAGFlow image and restart RAGFlow:
   docker compose -f docker/docker-compose.yml pull
   docker compose -f docker/docker-compose.yml up -d

Upgrade RAGFlow to the latest version

  1. Update ragflow/docker/.env as follows:
   RAGFLOW_IMAGE=infiniflow/ragflow:latest
  1. Update the RAGFlow image and restart RAGFlow:
   docker compose -f docker/docker-compose.yml pull
   docker compose -f docker/docker-compose.yml up -d