Skip to content

Instantly share code, notes, and snippets.

@headStyleColorRed
Last active July 31, 2020 16:29
Show Gist options
  • Save headStyleColorRed/3e5248e85a3100576b82de343e826f94 to your computer and use it in GitHub Desktop.
Save headStyleColorRed/3e5248e85a3100576b82de343e826f94 to your computer and use it in GitHub Desktop.
Aws E-skeleton-login script
#!/bin/bash
# Updating server
sudo apt-get update
sudo apt-get upgrade
# Installing dependencies
sudo apt-get install -y curl vim
# Installing Docker
sudo curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
# Installing Docker-compose
curl -L https://github.com/docker/compose/releases/download/1.25.4/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