# podman and Open WebUI

There are numerous tutorials both on youtube and on blog platforms that shows how to get Open WebUI up and running on docker.

Not too many mentions of podman, so here goes.

```bash
$ podman create -p 127.0.0.1:3000:8080 --network=pasta:-T,11434 \
--add-host=localhost:127.0.0.1 \
--env 'OLLAMA_BASE_URL=http://localhost:11434' \
--env 'ANONYMIZED_TELEMETRY=False' \
-v open-webui:/app/backend/data \
--label io.containers.autoupdate=registry \
--name open-webui ghcr.io/open-webui/open-webui:main
```

This will allow you to access Open WebUI on http://localhost:3000.

Remember to pull the image ghcr.io/open-webui/open-webui

‘till next time.
