What happens when a volume links an existing populated host and container dir
When you run a container and mount a volume from the host, all you see in the container is what is on the host – the volume mount points at the host directory, so if there was anything in the directory in the image it gets bypassed. With an image from this Dockerfile: FROM ubuntu WORKDIR /vol … Read more