Skip to content

Instantly share code, notes, and snippets.

@WillSquire
Last active August 30, 2018 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WillSquire/ea56258d0150676f5de9e2afaa4e671b to your computer and use it in GitHub Desktop.
Save WillSquire/ea56258d0150676f5de9e2afaa4e671b to your computer and use it in GitHub Desktop.

Enable Docker on system startup:

sudo systemctl enable docker.service

Install docker-compose (change 1.19.0 to latest version):

sudo su -
mkdir -p /opt/bin
curl -L "https://github.com/docker/compose/releases/download/1.19.0/docker-compose-$(uname -s)-$(uname -m)" -o /opt/bin/docker-compose
chmod +x /opt/bin/docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment