Skip to content

Commit

Permalink
Updated instructions on upgrading to RAGFlow dev (#3175)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?



### Type of change


- [x] Documentation Update
  • Loading branch information
writinwaters authored Nov 4, 2024
1 parent 285fd6a commit 3e4fc12
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Look into [.env](./.env), there're some important variables.

## MYSQL_PASSWORD

The mysql password could be changed by this variable. But you need to change *mysql.password* in [service_conf.yaml](./service_conf.yaml) at the same time.


Expand Down
8 changes: 7 additions & 1 deletion docs/guides/upgrade_ragflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ You can upgrade RAGFlow to dev version or the latest version:
RAGFLOW_IMAGE=infiniflow/ragflow:dev
```

2. Update RAGFlow image and restart RAGFlow:
2. Pull the latest code from inside Docker:

```bash
git pull
```

3. Update RAGFlow image and restart RAGFlow:

```bash
docker compose -f docker/docker-compose.yml pull
Expand Down
4 changes: 2 additions & 2 deletions docs/references/http_api_reference.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 0

slug: /http_api_reference
---

Expand Down Expand Up @@ -70,7 +70,7 @@ curl --request POST \

- `"language"`: (*Body parameter*), `string`
The language setting of the dataset to create. Available options:
- `"English"` (Default)
- `"English"` (default)
- `"Chinese"`

- `"embedding_model"`: (*Body parameter*), `string`
Expand Down
4 changes: 2 additions & 2 deletions docs/references/python_api_reference.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 1

slug: /python_api_reference
---

Expand Down Expand Up @@ -58,7 +58,7 @@ A brief description of the dataset to create. Defaults to `""`.

The language setting of the dataset to create. Available options:

- `"English"` (Default)
- `"English"` (default)
- `"Chinese"`

#### permission
Expand Down

0 comments on commit 3e4fc12

Please sign in to comment.