Last active
August 29, 2015 14:19
-
-
Save ksato9700/6c2141fc662906a03531 to your computer and use it in GitHub Desktop.
boot2docker proxy setting
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
boot2docker ssh | |
sudo sh -c "cat <<EOF > /var/lib/boot2docker/profile" | |
export HTTP_PROXY=<proxy> | |
export HTTPS_PROXY=<proxy> | |
export NO_PROXY=/var/run/docker.sock | |
wait4eth1() { | |
CNT=0 | |
until ip a show eth1 | grep -q UP | |
do | |
[ $((CNT++)) -gt 60 ] && break || sleep 1 | |
done | |
sleep 1 | |
} | |
wait4eth1 | |
EOF" | |
sudo /etc/init.d/docker restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment