|
|
|
|
|
by eriksjolund
1218 days ago
|
|
I wrote a mini tutorial (as a Reddit comment) about how to deal with UID/GID mappings when you run rootless podman and you want a specific container user to write to a bind-mounted directory: https://www.reddit.com/r/podman/comments/103ut7z/comment/j31... Short summary:
My best tip is to see if either "--user $uid:$gid" or "--user 0:0" works together with this command: podman run --rm --user $uid:$gid --volume ./dir:/dir:Z --userns keep-id:uid=$uid,gid=$gid IMAGE (requires podman > 4.3.0) |
|