Map a host directory straight into the container
Great for development — edit on the host, see it live inside
docker run -d -v /home/joe/site:/usr/share/nginx/html nginx
You control the exact host path (and its permissions)
docker volume ls — list volumesdocker volume inspect data — where it lives, who uses itdocker volume rm data — remove (must be unused)docker volume prune — remove all unused volumes (careful)