mirror of https://github.com/docker/docs.git
58 lines
1.6 KiB
Bash
58 lines
1.6 KiB
Bash
#!/bin/bash
|
|
|
|
trap '[ "$?" -eq 0 ] || read -p "Looks like something went wrong... Press any key to continue..."' EXIT
|
|
|
|
VM=default
|
|
DOCKER_MACHINE=./docker-machine.exe
|
|
VBOXMANAGE=/$(reg query HKEY_LOCAL_MACHINE\\SOFTWARE\\Oracle\\VirtualBox //v InstallDir | grep InstallDir | awk '{print substr($0, index($0,$3))}' | sed 's/\\/\//g' | sed 's/://')VBoxManage.exe
|
|
|
|
BLUE='\033[1;34m'
|
|
GREEN='\033[0;32m'
|
|
NC='\033[0m'
|
|
|
|
if [ ! -f $DOCKER_MACHINE ] || [ ! -f "${VBOXMANAGE}" ]; then
|
|
echo "Either VirtualBox or Docker Machine are not installed. Please re-run the Toolbox Installer and try again."
|
|
exit 1
|
|
fi
|
|
|
|
"${VBOXMANAGE}" showvminfo $VM &> /dev/null
|
|
VM_EXISTS_CODE=$?
|
|
|
|
set -e
|
|
|
|
if [ $VM_EXISTS_CODE -eq 1 ]; then
|
|
echo "Creating Machine $VM..."
|
|
$DOCKER_MACHINE rm -f $VM &> /dev/null || :
|
|
rm -rf ~/.docker/machine/machines/$VM
|
|
$DOCKER_MACHINE create -d virtualbox --virtualbox-memory 2048 $VM
|
|
else
|
|
echo "Machine $VM already exists in VirtualBox."
|
|
fi
|
|
|
|
echo "Starting machine $VM..."
|
|
$DOCKER_MACHINE start $VM
|
|
|
|
echo "Setting environment variables for machine $VM..."
|
|
eval "$($DOCKER_MACHINE env --shell=bash $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
|
|
cd
|
|
|
|
exec "$BASH" --login -i
|