mirror of https://github.com/docker/docs.git
Merge pull request #552 from bbodenmiller/patch-2
set no proxy flag - exclude machine from proxy
This commit is contained in:
commit
c1cd1162f9
|
|
@ -56,7 +56,7 @@ if [ "${VM_STATUS}" != "Running" ]; then
|
|||
yes | "${DOCKER_MACHINE}" regenerate-certs "${VM}"
|
||||
fi
|
||||
|
||||
eval "$(${DOCKER_MACHINE} env --shell=bash ${VM})"
|
||||
eval "$(${DOCKER_MACHINE} env --shell=bash --no-proxy ${VM})"
|
||||
|
||||
clear
|
||||
cat << EOF
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ if [ "${VM_STATUS}" != "Running" ]; then
|
|||
fi
|
||||
|
||||
STEP="Setting env"
|
||||
eval "$(${DOCKER_MACHINE} env --shell=bash ${VM})"
|
||||
eval "$(${DOCKER_MACHINE} env --shell=bash --no-proxy ${VM})"
|
||||
|
||||
STEP="Finalize"
|
||||
clear
|
||||
|
|
|
|||
Loading…
Reference in New Issue