Ravat Tailor
Ravat Tailor

Reputation: 1263

docker-compose up command not working on console

I have 5 images and try to run docker images through docker-compose up, but it is showing nothing on the console. while running the docker-compose --version it is showing nothing.

Upvotes: 0

Views: 8294

Answers (1)

Zoheb Nawaz
Zoheb Nawaz

Reputation: 117

docker-compose does not come bundled with the docker-engine. You need to install it separately after installing the engine. Follow the instructions given in this link:

https://docs.docker.com/compose/install/

Upvotes: 3

Related Questions