mirror of
https://github.com/louislam/dockge.git
synced 2024-11-23 19:34:04 +00:00
Add info for podman README.md
Add important information about running dockge with podman.
This commit is contained in:
parent
109222f024
commit
91e4128198
1 changed files with 15 additions and 0 deletions
15
README.md
15
README.md
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue