Add info for podman README.md

Add important information about running dockge with podman.
This commit is contained in:
JoFo 2024-05-06 09:31:25 +02:00 committed by GitHub
parent 109222f024
commit 91e4128198
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,6 +84,21 @@ curl "https://dockge.kuma.pet/compose.yaml?port=5001&stacksPath=/opt/stacks" --o
Interactive compose.yaml generator is available on:
https://dockge.kuma.pet
### Podman
You need to install `podman` and `podman-compose`.
Fix the problem with `/var/run/docker.sock':
```yaml
version: "3.8"
services:
dockge:
privileged: true
volumes:
- /run/podman/podman.sock:/var/run/docker.sock:Z
# ...
```
## How to Update
```bash