Reputation: 1263
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
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:
Upvotes: 3