Skip to content

Instantly share code, notes, and snippets.

@olegbukatchuk
Created September 30, 2019 20:35
Show Gist options
  • Save olegbukatchuk/235488ebaea35b5c45ba98e546a2693a to your computer and use it in GitHub Desktop.
Save olegbukatchuk/235488ebaea35b5c45ba98e546a2693a to your computer and use it in GitHub Desktop.
#!/bin/bash
apt-get -y update
apt-get -y install nano mc htop curl
curl -fsSL get.docker.com -o get-docker.sh \
&& chmod +x get-docker.sh \
&& ./get-docker.sh
curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose \
&& 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