Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save monsefoster/96e597395bf657f4c2be9471fc1f6178 to your computer and use it in GitHub Desktop.
Save monsefoster/96e597395bf657f4c2be9471fc1f6178 to your computer and use it in GitHub Desktop.
Install Docker CE 17.05 and Compose 1.13.0

Installing Docker CE Edge for Ubuntu Linux

Remove previous versions of Docker and Compose

sudo apt-get purge docker-compose
sudo apt-get purge docker-ce

Install dependencies

sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common

Install Docker

Download Docker .deb file:

curl -O https://download.docker.com/linux/ubuntu/dists/xenial/pool/edge/amd64/docker-ce_17.05.0~ce-0~ubuntu-xenial_amd64.deb

Install Docker:

sudo dpkg -i docker-ce_17.05.0~ce-0~ubuntu-xenial_amd64.deb

Install Compose

sudo curl -fSL http://github.com/docker/compose/releases/download/1.13.0/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose

sudo chmod +x /usr/local/bin/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment