This repository has been archived by the owner on Feb 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a better Icon, and put the on the desktop. Tweak the vbox&msys in…
…stalls to be quieter
- Loading branch information
1 parent
caa5c6c
commit 48a6407
Showing
5 changed files
with
47 additions
and
16 deletions.
There are no files selected for viewing
Binary file not shown.
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
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
#!sh | ||
ISO="$USERPROFILE/.boot2docker/boot2docker.iso" | ||
|
||
if [ ! -e "$ISO" ]; then | ||
echo "copying initial boot2docker.iso (run 'boot2docker.exe download' to update" | ||
mkdir -p "$USERPROFILE/.boot2docker" | ||
cp boot2docker.iso "$ISO" | ||
fi | ||
|
||
echo "initialising..." | ||
./boot2docker.exe init | ||
echo "starting..." | ||
./boot2docker.exe start | ||
echo "connecting... (password: tcuser)" | ||
echo "connecting..." | ||
./boot2docker.exe ssh | ||
|
||
read |