# Make Volumes `docker volume create ` # List Volumes `docker volume ls` # Inspect Volume `docker volume inspect ` # Remove Volume `docker volume rm ` # Volume Location # Start a container with a volume # e.g. mounting volume to container's /app folder `--mount source=, target=/app` `docker inspect ` can be used to check if the volume is mounted to the Mounts section # Remove volume from container Note, this doesn't remove the volume itself. Just the link to container `docker stop ` `docker container rm `