Skip to content

Instantly share code, notes, and snippets.

View tdlmatias's full-sized avatar
👋
Working Remote

Tchize Matias tdlmatias

👋
Working Remote
View GitHub Profile
{
"variables": {
"client_id": "**",
"client_secret": "*************************",
"resource_group": "***",
"storage_account": "****",
"subscription_id": "**********************",
"object_id": "**************"
},
"builders": [{
@tdlmatias
tdlmatias / install-redis.sh
Created July 13, 2020 12:30 — forked from jpickwell/install-redis.sh
Installing Redis 5.0.0 on Amazon Linux
#!/bin/bash
###############################################
# To use:
# chmod +x install-redis.sh
# ./install-redis.sh
###############################################
version=5.0.0
@tdlmatias
tdlmatias / jenkins_ci_on_ubuntu.md
Created May 12, 2017 08:34 — forked from ostinelli/jenkins_ci_on_ubuntu.md
Setup Jenkins CI on Ubuntu.

Jenkins CI

Instructions on how to setup a secured Jenkins CI.

Install Jenkins

$ wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
$ sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list$ .d/jenkins.list'
$ sudo apt-get update
$ sudo apt-get install jenkins