Skip to content

Podman volumes

Bind mounts

Bind mounts are mounted with root:root ownership by default. Change the ownership of the bind mount:

podman run --userns=keep-id:uid=1000,gid=1000 -v $(pwd):/code --rm -it ...