mirror of https://github.com/docker/docs.git
86 lines
2.3 KiB
Bash
Executable File
86 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
VM=default
|
|
DOCKER_MACHINE=/usr/local/bin/docker-machine
|
|
VBOXMANAGE=/Applications/VirtualBox.app/Contents/MacOS/VBoxManage
|
|
|
|
BLUE='\033[0;34m'
|
|
GREEN='\033[0;32m'
|
|
NC='\033[0m'
|
|
|
|
unset DYLD_LIBRARY_PATH
|
|
unset LD_LIBRARY_PATH
|
|
|
|
#clear all_proxy if not socks address
|
|
if [[ $ALL_PROXY != socks* ]]; then
|
|
unset ALL_PROXY
|
|
fi
|
|
if [[ $all_proxy != socks* ]]; then
|
|
unset all_proxy
|
|
fi
|
|
|
|
clear
|
|
|
|
if [ ! -f "${DOCKER_MACHINE}" ]; then
|
|
echo "Docker Machine is not installed. Please re-run the Toolbox Installer and try again."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -f "${VBOXMANAGE}" ]; then
|
|
echo "VirtualBox is not installed. Please re-run the Toolbox Installer and try again."
|
|
exit 1
|
|
fi
|
|
|
|
"${VBOXMANAGE}" list vms | grep \""${VM}"\" &> /dev/null
|
|
VM_EXISTS_CODE=$?
|
|
|
|
if [ $VM_EXISTS_CODE -eq 1 ]; then
|
|
"${DOCKER_MACHINE}" rm -f "${VM}" &> /dev/null
|
|
rm -rf ~/.docker/machine/machines/"${VM}"
|
|
#set proxy variables if they exists
|
|
if [ "${HTTP_PROXY}" ]; then
|
|
PROXY_ENV="$PROXY_ENV --engine-env HTTP_PROXY=$HTTP_PROXY"
|
|
fi
|
|
if [ "${HTTPS_PROXY}" ]; then
|
|
PROXY_ENV="$PROXY_ENV --engine-env HTTPS_PROXY=$HTTPS_PROXY"
|
|
fi
|
|
if [ "${NO_PROXY}" ]; then
|
|
PROXY_ENV="$PROXY_ENV --engine-env NO_PROXY=$NO_PROXY"
|
|
fi
|
|
"${DOCKER_MACHINE}" create -d virtualbox $PROXY_ENV --virtualbox-memory 2048 --virtualbox-disk-size 204800 "${VM}"
|
|
fi
|
|
|
|
VM_STATUS="$(${DOCKER_MACHINE} status ${VM} 2>&1)"
|
|
if [ "${VM_STATUS}" != "Running" ]; then
|
|
"${DOCKER_MACHINE}" start "${VM}"
|
|
yes | "${DOCKER_MACHINE}" regenerate-certs "${VM}"
|
|
fi
|
|
|
|
eval "$(${DOCKER_MACHINE} env --shell=bash --no-proxy ${VM})"
|
|
|
|
clear
|
|
cat << EOF
|
|
|
|
|
|
## .
|
|
## ## ## ==
|
|
## ## ## ## ## ===
|
|
/"""""""""""""""""\___/ ===
|
|
~~~ {~~ ~~~~ ~~~ ~~~~ ~~~ ~ / ===- ~~~
|
|
\______ o __/
|
|
\ \ __/
|
|
\____\_______/
|
|
|
|
|
|
EOF
|
|
echo -e "${BLUE}docker${NC} is configured to use the ${GREEN}${VM}${NC} machine with IP ${GREEN}$(${DOCKER_MACHINE} ip ${VM})${NC}"
|
|
echo "For help getting started, check out the docs at https://docs.docker.com"
|
|
echo
|
|
|
|
USER_SHELL="$(dscl /Search -read /Users/${USER} UserShell | awk '{print $2}' | head -n 1)"
|
|
if [[ "${USER_SHELL}" == *"/bash"* ]] || [[ "${USER_SHELL}" == *"/zsh"* ]] || [[ "${USER_SHELL}" == *"/sh"* ]]; then
|
|
"${USER_SHELL}" --login
|
|
else
|
|
"${USER_SHELL}"
|
|
fi
|