Add Single-User with Nvidia GPU command

Added command for single user using a GPU as there was no mention to that and the one for single user said :main and not :cuda. This also makes it an all in one command.
This commit is contained in:
Gropinou 2025-04-01 13:19:06 -04:00 committed by GitHub
parent 3a54c302a5
commit cb1baa3d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,7 +39,10 @@ To bypass the login page for a single-user setup, set the `WEBUI_AUTH` environme
```bash
docker run -d -p 3000:8080 -e WEBUI_AUTH=False -v open-webui:/app/backend/data --name open-webui ghcr.io/open-webui/open-webui:main
```
For Nvidia GPU on Single-User Mode, use:
```bash
docker run -d -p 3000:8080 -e WEBUI_AUTH=False --gpus all -v open-webui:/app/backend/data --name open-webui ghcr.io/open-webui/open-webui:cuda
```
:::warning
You cannot switch between single-user mode and multi-account mode after this change.
:::