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 installation script for Ubuntu 16.04 (Xenial) on Azure | |
# Usage: execute sudo -i, first. | |
# wget -q -O - "$@" https://gist.github.com/catataw/63044e79c3cfa20198408130ba52e110/raw/ --no-cache | sh | |
# After running the script reboot and check whether docker is running. | |
DOCKER_RESULT=1 | |
while [ $DOCKER_RESULT -ne 0 ]; do | |
echo "#################################################" | |
echo " Updating System" |