Skip to content

Installation fails with PermissionError: [Errno 13] Permission denied on Debian #589

Answered by IeP4nieF
IeP4nieF asked this question in Ask for Help
Discussion options

You must be logged in to vote

In case of this is interesting for someone else: If you want to use dockge with podman you have to edit compose.yaml and change

- /var/run/docker.sock:/var/run/docker.sock

in

- /run/user/<uid>/podman/podman.sock:/run/user/<uid>/podman/podman.sock

and

- ./data:/app/data

in

- <path_to_dockge>:/app/data

You also have to run

systemctl --user status podman.socket

an instead of

docker-compose up -d

you have to use

docker-compose --host unix:///run/user/$UID/podman/podman.sock up -d

After this, you have to run

systemctl enable --user podman-restart.service

and as root:

loginctl enable-linger PODMAN-USER-HERE

IMHO the documentation should be updated to this or podman should be removed fr…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by IeP4nieF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1 participant