From 91e41281988a80aeaf6e2d2e5ebfa9513f426c61 Mon Sep 17 00:00:00 2001 From: JoFo <72133036+JoFo-IT@users.noreply.github.com> Date: Mon, 6 May 2024 09:31:25 +0200 Subject: [PATCH] Add info for podman README.md Add important information about running dockge with podman. --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index a8997e9..ad821f5 100644 --- a/README.md +++ b/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