Add doc for dev image (#2641)

Add doc for dev image

### Type of change

- [x] Documentation Update

---------

Co-authored-by: writinwaters <93570324+writinwaters@users.noreply.github.com>
This commit is contained in:
Zhichang Yu
2024-09-29 10:51:46 +08:00
committed by GitHub
parent aea553c3a8
commit a8280d9fd2
8 changed files with 468 additions and 342 deletions

View File

@ -118,7 +118,7 @@ docker compose -f docker/docker-compose-base.yml up -d
```bash
npm run dev
```
```
*The following message appears, showing the IP address and port number of your frontend service:*
@ -126,4 +126,16 @@ docker compose -f docker/docker-compose-base.yml up -d
### Access the RAGFlow service
In your web browser, enter `http://127.0.0.1:<PORT>/`, ensuring the port number matches that shown in the screenshot above.
In your web browser, enter `http://127.0.0.1:<PORT>/`, ensuring the port number matches that shown in the screenshot above.
### Stop the RAGFlow service when the development is done
1. Stop the RAGFlow frontend service:
```bash
pkill npm
```
2. Stop the RAGFlow backend service:
```bash
pkill -f "docker/entrypoint.sh"
```