Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 515 Bytes

debian-installation.md

File metadata and controls

25 lines (17 loc) · 515 Bytes

Installing Docker and Docker-Compose on Debian 9

Run the below command to install Docker

curl -sSL https://get.docker.com/ | sh

Run this command to download the latest version of Docker Compose:

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:

chmod +x /usr/local/bin/docker-compose

Test the installation

docker-compose version