Docker compose installation
Docker is a lightweight way to put our application inside containers. With docker-compose.Docker Compose makes it easier for users to orchestrate the processes of Docker containers, including starting up, shutting down, and setting up intra-container linking and volumes.
Step by Step Instructions
Installing Docker Compose
#sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
*Next we’ll set the permissions
#sudo chmod +x /usr/local/bin/docker-compose
*Then we’ll verify that the installation was successful by checking the version
# docker-compose --version
docker-compose version 1.17.1, build 1110ad01
Now that we have Docker Compose installed
Recent Comments
No comments
Leave a Comment
We will be happy to hear what you think about this post