I'm trying to grasp Docker's volume better, and I'm having trouble figuring out the distinctions / use-cases of:
The docker volume create command creates a new volume in a docker container.
run -v /path:/host path in docker
I'm particularly confused about the VOLUME item in the Dockerfile file, and what occurs when you combine it with the -v flag.