Skip to content

Instantly share code, notes, and snippets.

@klaytonfaria
Created July 3, 2015 15:15
Show Gist options
  • Save klaytonfaria/55cd2e59ef4206ad54f9 to your computer and use it in GitHub Desktop.
Save klaytonfaria/55cd2e59ef4206ad54f9 to your computer and use it in GitHub Desktop.
boot2docker on iTerm
tell application "iTerm"
make new terminal
tell the current terminal
activate current session
launch session "Default Session"
tell the last session
write text "unset DYLD_LIBRARY_PATH ; unset LD_LIBRARY_PATH"
write text "mkdir -p ~/.boot2docker"
write text "if [ ! -f ~/.boot2docker/boot2docker.iso ]; then cp /usr/local/share/boot2docker/boot2docker.iso ~/.boot2docker/ ; fi"
write text "/usr/local/bin/boot2docker init && /usr/local/bin/boot2docker up && $(boot2docker shellinit) && docker version"
end tell
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment