Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/getting-started/quick-start/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import TabItem from '@theme/TabItem';
import { TopBanners } from "@site/src/components/TopBanners";

import DockerCompose from './tab-docker/DockerCompose.md';
import Extension from './tab-docker/DockerDesktopExtension.md';
import Podman from './tab-docker/Podman.md';
import PodmanKubePlay from './tab-docker/PodmanKubePlay.md';
import ManualDocker from './tab-docker/ManualDocker.md';
Expand Down Expand Up @@ -55,19 +56,25 @@ Choose your preferred installation method below:
</div>
</TabItem>

<TabItem value="extension" label="Extension">
<div className='mt-5'>
<Extension />
</div>
</TabItem>

<TabItem value="podman" label="Podman">
<div className='mt-5'>
<Podman />
</div>
</TabItem>

<TabItem value="podman-kube-play" label="Podman Kube Play">
<TabItem value="podman-kube-play" label="Kube Play">
<div className='mt-5'>
<PodmanKubePlay />
</div>
</TabItem>

<TabItem value="swarm" label="Docker Swarm">
<TabItem value="swarm" label="Swarm">
<div className='mt-5'>
<DockerSwarm />
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Docker Desktop Extension
Docker has released an Open WebUI Docker extension that uses Docker Model Runner for inference. You can read their getting started blog here: [Run Local AI with Open WebUI + Docker Model Runner](https://www.docker.com/blog/open-webui-docker-desktop-model-runner/)

You can find troubleshooting steps for the extension in their Github repository: [Open WebUI Docker Extension - Troubleshooting](https://github.com/rw4lll/open-webui-docker-extension?tab=readme-ov-file#troubleshooting)

While this is an amazing resource to try out Open WebUI with little friction, it is not an officially supported installation method - you may run into unexpected bugs or behaviors while using it. For example, you are not able to log in as different users in the extension since it is designed to be for a single local user. If you run into issues using the extension, please submit an issue on the extension's [Github repository](https://github.com/rw4lll/open-webui-docker-extension).
Loading