Just install the docker toolbar on Windows 10, and I have a little problem with my docker containers. When I create the dockers, the instance will start, but nothing will be installed in the / var / www / html directory. If I open Kitematic, I see a container, and when I click on volumes, I donโt see a set of local folders. This is what my docker-compose.yml looks like.
web: build: . ports: - "80:80" volumes: - app/:/var/www/html/
Do I need to specify an absolute path to my local directory? The application directory is in the same folder as the docker-compose.yml file.
source share