An open API service indexing awesome lists of open source software.

https://github.com/fphammerle/docker-mount-propagation-test

Test propagation of bind mount from docker container to host 🐳
https://github.com/fphammerle/docker-mount-propagation-test

bind-mount docker linux-kernel mount-propagation

Last synced: about 2 months ago
JSON representation

Test propagation of bind mount from docker container to host 🐳

Awesome Lists containing this project

README

          

Test propagation of bind mount.

```sh
docker run --rm --init \
--cap-add SYS_ADMIN --security-opt apparmor:unconfined \
-v /tmp/prop-test-host:/prop-test/vol:rshared \
--name mount-propagation-test fphammerle/mount-propagation-test
cat /tmp/prop-test-host/mp/mountinfo-container
```

You may need to disable user namespace remapping `--userns host`
due to https://github.com/moby/moby/issues/36472#issuecomment-480388275 .