Last active
July 31, 2025 01:49
-
-
Save jkeam/225a4e8619fcac86d0b510ba309f0635 to your computer and use it in GitHub Desktop.
Podman share directory
Another great link here:
https://blog.christophersmart.com/2021/01/31/podman-volumes-and-selinux/
podman run -dit --volume ~/src:/dest:z --name busybox busybox
podman exec -it busybox touch /dest/file
and then from the host:
ls -Z ./src/file
# returns this:
# system_u:object_r:container_file_t:s0 ./src/file
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or for temporary only: