Skip to content

Instantly share code, notes, and snippets.

View Izcarmt95's full-sized avatar
🇨🇷
Working from home

Izcar J. Muñoz-Torrez Izcarmt95

🇨🇷
Working from home
View GitHub Profile
@dhoeric
dhoeric / Ubuntu 16.04
Last active July 18, 2024 17:07
install-docker-aws-ec2-user-data
#!/bin/bash
# Install docker
apt-get update
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt-get update