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