I have successfully been able to share folders between a docker container with volumes using
docker run -v /host/path:/container/path ...
B
If you came here because you were looking for a simple way to browse any VOLUME:
docker volume listdocker run -it --rm --mount source=[NAME OF VOLUME],target=/volume busyboxcd /volume to enter the volume.