When you create a volume, it is stored within a directory on the Docker host. When you mount the volume into a container, this directory is what is mounted into the container. This is similar to the way that bind mounts work, except that volumes are managed by Docker and are isolated from the core functionality of the host machine.
特别是最后一句 except that volumes are managed by Docker and are isolated from the core functionality of the host machine.
这个 core functionality 是什么呢~