I hereby claim:
- I am gonzaloplaza on github.
- I am gonzaloplaza (https://keybase.io/gonzaloplaza) on keybase.
- I have a public key whose fingerprint is 0694 A58A B74D 23BE E80E D16D ED80 4497 7A60 8C65
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
The following guide includes all steps needed to install a Jenkins Server on AWS EC2 (Ubuntu 16.04 LTS), using NGINX as proxy with custom tld
#!/bin/bash | |
# Install docker | |
apt-get update | |
apt-get install -y cloud-utils 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 |