folak@lemmy.world to Selfhosted@lemmy.worldEnglish · 1 年前Docker vs Podman, which one to choose for a beginner and why ?message-squaremessage-square54fedilinkarrow-up170
arrow-up170message-squareDocker vs Podman, which one to choose for a beginner and why ?folak@lemmy.world to Selfhosted@lemmy.worldEnglish · 1 年前message-square54fedilink
minus-squareSheeEttin@lemmy.worldlinkfedilinkEnglisharrow-up6·1 年前Whichever one is better supported by the containers you want to run.
minus-squarelemmyvore@feddit.nllinkfedilinkEnglisharrow-up2·1 年前Except in real life you’ll run into images that podman refuses to work with all the time.
minus-squarekrolden@lemmy.mllinkfedilinkEnglisharrow-up2·1 年前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.
minus-squarelemmyvore@feddit.nllinkfedilinkEnglisharrow-up3·1 年前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?
minus-squarevegetaaaaaaa@lemmy.worldlinkfedilinkEnglisharrow-up8·edit-21 年前You use podman unshare to chown the directories to the appropriate UID/GID in the container’s user namespace.
minus-squarenickwitha_k (he/him)@lemmy.sdf.orglinkfedilinkEnglisharrow-up4·1 年前This 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.