Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jorandradefig/6a2f810c2f2d873530e470aac59c6d4e to your computer and use it in GitHub Desktop.

Select an option

Save jorandradefig/6a2f810c2f2d873530e470aac59c6d4e to your computer and use it in GitHub Desktop.
Install Docker Compose for Ubuntu
From: https://docs.docker.com/compose/install/#install-compose
Download the latest version
sudo curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
Apply executable permissions to the binary
sudo chmod +x /usr/local/bin/docker-compose
Test the installation
docker-compose --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment