Mount volume from host in Dockerfile long format
When configuring a docker-compose.yml, I can easily mount a volume that maps a folder from the host machine to the container: ... volumes: - "/host/folder/:/container/folder/" ... However, if I try to use the long syntax, that doesn't work anymore: ...…