mirror of
https://github.com/open-webui/docs
synced 2025-05-21 03:35:55 +00:00
Add Podman.md changes from feature-nginx-combined
This commit is contained in:
parent
e45c34d9a7
commit
3f4999a2a3
28
docs/getting-started/quick-start/tab-docker/Podman.md
Normal file
28
docs/getting-started/quick-start/tab-docker/Podman.md
Normal file
@ -0,0 +1,28 @@
|
||||
|
||||
# Using Podman
|
||||
|
||||
Podman is a daemonless container engine for developing, managing, and running OCI Containers.
|
||||
|
||||
## Basic Commands
|
||||
|
||||
- **Run a Container:**
|
||||
|
||||
```bash
|
||||
podman run -d --name openwebui -p 3000:8080 ghcr.io/open-webui/open-webui:main
|
||||
```
|
||||
|
||||
- **List Running Containers:**
|
||||
|
||||
```bash
|
||||
podman ps
|
||||
```
|
||||
|
||||
## Networking with Podman
|
||||
|
||||
If networking issues arise, you may need to adjust your network settings:
|
||||
|
||||
```bash
|
||||
--network=slirp4netns:allow_host_loopback=true
|
||||
```
|
||||
|
||||
Refer to the Podman [documentation](https://podman.io/) for advanced configurations.
|
Loading…
Reference in New Issue
Block a user