29 lines
662 B
YAML
29 lines
662 B
YAML
# podman run -d --replace --network=slirp4netns:allow_host_loopback=true \
|
|
# --name=open-webui -p 3000:8080 -v open-webui:/app/backend/data \
|
|
# ghcr.io/open-webui/open-webui:main
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
creationTimestamp: "2025-11-06T17:34:58Z"
|
|
labels:
|
|
app: open-webui
|
|
name: open-webui
|
|
spec:
|
|
containers:
|
|
- image: ghcr.io/open-webui/open-webui:main
|
|
name: open-webui
|
|
ports:
|
|
- containerPort: 8080
|
|
hostPort: 3000
|
|
securityContext: {}
|
|
volumeMounts:
|
|
- mountPath: /app/backend/data
|
|
name: open-webui-pvc
|
|
volumes:
|
|
- name: open-webui-pvc
|
|
persistentVolumeClaim:
|
|
claimName: open-webui
|
|
|