This commit is contained in:
Shengsheng Huang 2024-06-20 10:38:20 +08:00 committed by GitHub
parent 05a8d051f6
commit ed4c439497
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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. 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 ```eval_rst
$ export no_proxy=localhost,127.0.0.1 .. tabs::
$ cd ragflow/docker .. tab:: Linux
$ chmod +x ./entrypoint.sh
$ docker compose up -d .. 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 ```eval_rst
.. note:: .. 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` ### 4. Using `RAGFlow`