Open
Description
Since we have file sharing enabled by default for linux/mac so better to have a e2e or integration test which covers it. It can be as simple as creating a container with host mounted path and check if it is exist.
$ mkdir test
$ echo "hello from vm" >> test/hello
$ podman run --rm -v $(pwd)/test:/test busybox busybox cat /test/hello
hello from vm
$ podman run -ti --rm -v $(pwd)/test:/test:Z busybox touch /test/bye
$ ls test/
bye hello
Activity