Skip to content

Instantly share code, notes, and snippets.

View cbschuld's full-sized avatar

Chris Schuld cbschuld

View GitHub Profile
@cbschuld
cbschuld / every-single-update.sh
Created April 25, 2021 22:09
Remove and Re-install Command Line Tools MacOS / OSX
sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install
@cbschuld
cbschuld / gist:0ff036198de8456e86d7091aaa2231a7
Last active June 2, 2023 18:16
Installing Docker and docker-compose on AWS EC2 Amazon Linux 2

Installing Docker and docker-compose on AWS EC2 Amazon Linux 2

sudo yum update
sudo yum install docker
wget https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)
sudo mv docker-compose-$(uname -s)-$(uname -m) /usr/local/bin/docker-compose
sudo chmod -v +x /usr/local/bin/docker-compose
sudo systemctl enable docker.service
sudo systemctl start docker.service