@[email protected] to [email protected]English • 2 years agoDocker vs Podman, which one to choose for a beginner and why ?message-square52fedilinkarrow-up170
arrow-up170message-squareDocker vs Podman, which one to choose for a beginner and why ?@[email protected] to [email protected]English • 2 years agomessage-square52fedilink
minus-square@[email protected]linkfedilinkEnglish6•2 years agoWhichever one is better supported by the containers you want to run.
minus-squarelemmyvorelinkfedilinkEnglish2•2 years agoExcept in real life you’ll run into images that podman refuses to work with all the time.
minus-squarekroldenlinkfedilinkEnglish2•2 years agoExample? Ive definitely had compose projects that I had a hard time running with podman but all the individual containers seem to work just fine.
minus-squarelemmyvorelinkfedilinkEnglish3•2 years agoHow do you make podman run an image that runs as an uid/gid that don’t exist on the host and needs to access host devices/volumes owned by uid/gid that don’t exist in the container?
minus-square@[email protected]linkfedilinkEnglish8•edit-22 years agoYou use podman unshare to chown the directories to the appropriate UID/GID in the container’s user namespace.
minus-squarenickwitha_k (he/him)linkfedilinkEnglish4•2 years agoThis right here. Just found out about this last week after a long debug.
Whichever one is better supported by the containers you want to run.
They both support the same containers
Except in real life you’ll run into images that podman refuses to work with all the time.
Example? Ive definitely had compose projects that I had a hard time running with podman but all the individual containers seem to work just fine.
How do you make podman run an image that runs as an uid/gid that don’t exist on the host and needs to access host devices/volumes owned by uid/gid that don’t exist in the container?
You use podman unshare to
chown
the directories to the appropriate UID/GID in the container’s user namespace.This right here. Just found out about this last week after a long debug.