This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker build example | |
docker build ./ --tag teameagleeye/air-httpd:centos-php71-cli | |
# Docker push example | |
docker push teameagleeye/air-httpd:centos-php71-cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |