small fix (#11366)
This commit is contained in:
parent
05a8d051f6
commit
ed4c439497
1 changed files with 24 additions and 7 deletions
|
|
@ -109,12 +109,29 @@ Build the pre-built Docker images and start up the server:
|
|||
Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_VERSION` in **docker/.env** to the intended version, for example `RAGFLOW_VERSION=v0.7.0`, before running the following commands.
|
||||
```
|
||||
|
||||
```bash
|
||||
$ export no_proxy=localhost,127.0.0.1
|
||||
$ cd ragflow/docker
|
||||
$ chmod +x ./entrypoint.sh
|
||||
$ docker compose up -d
|
||||
```
|
||||
```eval_rst
|
||||
.. tabs::
|
||||
.. tab:: Linux
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
export no_proxy=localhost,127.0.0.1
|
||||
cd ragflow/docker
|
||||
chmod +x ./entrypoint.sh
|
||||
docker compose up -d
|
||||
|
||||
.. tab:: Windows
|
||||
|
||||
Please run the following command in Miniforge or Anaconda Prompt.
|
||||
|
||||
.. code-block:: cmd
|
||||
|
||||
set no_proxy=localhost,127.0.0.1
|
||||
cd ragflow/docker
|
||||
chmod +x ./entrypoint.sh
|
||||
docker compose up -d
|
||||
|
||||
|
||||
|
||||
```eval_rst
|
||||
.. note::
|
||||
|
|
@ -145,7 +162,7 @@ INFO:werkzeug:Press CTRL+C to quit
|
|||
```
|
||||
|
||||
|
||||
Open a browser and navigate to the URL displayed in the terminal logs. Look for messages like `Running on http://ip:port`. For local deployment, you can usually access the web portal at `http://127.0.0.1:9380`. For remote access, use `http://your_ip:9380`.
|
||||
You can now open a browser and access the RAGflow web portal. With the default settings, simply enter `http://IP_OF_YOUR_MACHINE` (without the port number), as the default HTTP serving port `80` can be omitted. If RAGflow is deployed on the same machine as your browser, you can also access the web portal at `http://127.0.0.1` or `http://localhost`.
|
||||
|
||||
|
||||
### 4. Using `RAGFlow`
|
||||
|
|
|
|||
Loading…
Reference in a new issue