Posts

Showing posts from March 12, 2019

Installing Docker-Compose on Ubuntu

Image
    On our previous article we saw how to install docker on Ubuntu 17.04. That is suitable for running a individual container(single applications). What if we want to run multi container application?     This leads to the invention of docker-compose, In this article, we will see you how to install the latest version of Docker Compose to help you to manage multi-container applications. Installing Docker Compose:     Run the below curl command which will download and install the latest version of docker-compose, jhony@ljunix~$ sudo curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose Change the permission of the downloaded file which will make it as an executable one, jhony@ljunix~$ sudo chmod +x /usr/local/bin/docker-compose Check your installation:     Run the below command to check the version of docker-compose, jhony@ljunix~$ docker-compose --version docker-compose version 1.18

Blog Top Sites

Blog Log