Skip to content

Instantly share code, notes, and snippets.

View andrefigueira's full-sized avatar
🦄
Exploring code and consciousness

André Figueira andrefigueira

🦄
Exploring code and consciousness
View GitHub Profile
@andrefigueira
andrefigueira / docker-helpers.sh
Created July 9, 2019 09:32
Helpers for dealing with Docker
# Docker build example
docker build ./ --tag teameagleeye/air-httpd:centos-php71-cli
# Docker push example
docker push teameagleeye/air-httpd:centos-php71-cli
@andrefigueira
andrefigueira / update-linux-postman.sh
Created December 13, 2017 16:09
update-linux-postman.sh
update-postman () {
echo "Updating postman to latest version"
dir=$(pwd)
cd /tmp
echo "Downloading latest version"
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
echo "Extracting postman"
sudo tar -xzf postman.tar.gz -C /opt