mirror of
https://github.com/open-webui/docs
synced 2025-05-20 11:18:42 +00:00
Add ManualDocker.md changes from feature-nginx-combined
This commit is contained in:
parent
3bb3bbdf69
commit
e45c34d9a7
24
docs/getting-started/quick-start/tab-docker/ManualDocker.md
Normal file
24
docs/getting-started/quick-start/tab-docker/ManualDocker.md
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
# Manual Docker Setup
|
||||
|
||||
If you prefer to set up Docker manually, follow these steps.
|
||||
|
||||
## Step 1: Pull the Open WebUI Image
|
||||
|
||||
```bash
|
||||
docker pull ghcr.io/open-webui/open-webui:main
|
||||
```
|
||||
|
||||
## Step 2: Run the Container
|
||||
|
||||
```bash
|
||||
docker run -d -p 3000:8080 -v open-webui:/app/backend/data --name open-webui ghcr.io/open-webui/open-webui:main
|
||||
```
|
||||
|
||||
**Note:** For Nvidia GPU support, add `--gpus all` to the `docker run` command.
|
||||
|
||||
## Access the WebUI
|
||||
|
||||
After the container is running, access Open WebUI at:
|
||||
|
||||
[http://localhost:3000](http://localhost:3000)
|
Loading…
Reference in New Issue
Block a user