ymakux
ymakux

Reputation: 3485

Run docker-compose on Windows 7

I'm using Docker Toolbox to run docker containers on Windows. When I try to perform docker-compose up Docker cannot find docker-compose.yml. I must cd into container's directory or specify the file path using -f argument. How to get the path?

docker info shows Root Dir as /mtn/sda1/bla/bla which is virtual path and doesn't exist on my PC.

UPD: solved

Upvotes: 0

Views: 1750

Answers (1)

amanze ogbonna
amanze ogbonna

Reputation: 26

You may have simply forgot to save the docker-compose.yml. check this first. Try this solution, it worked for me https://github.com/docker/compose/issues/129

hope you get it sorted

Upvotes: 1

Related Questions