From e45c34d9a76b93070b9c4b66074d59b0654c0160 Mon Sep 17 00:00:00 2001 From: Matthew Hand Date: Tue, 5 Nov 2024 19:52:10 +0000 Subject: [PATCH] Add ManualDocker.md changes from feature-nginx-combined --- .../quick-start/tab-docker/ManualDocker.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/getting-started/quick-start/tab-docker/ManualDocker.md diff --git a/docs/getting-started/quick-start/tab-docker/ManualDocker.md b/docs/getting-started/quick-start/tab-docker/ManualDocker.md new file mode 100644 index 0000000..d6702fc --- /dev/null +++ b/docs/getting-started/quick-start/tab-docker/ManualDocker.md @@ -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)