-
-
Save orangain/5f74bf388f66778f0e47 to your computer and use it in GitHub Desktop.
Mac OS X script to automatically start boot2docker on system boot
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
curl https://gist.github.com/orangain/5f74bf388f66778f0e47/raw/com.docker.boot2docker.plist -o ~/Library/LaunchAgents/com.docker.boot2docker.plist | |
launchctl load ~/Library/LaunchAgents/com.docker.boot2docker.plist | |
echo '$(boot2docker shellinit)' >> ~/.bash_profile |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>KeepAlive</key> | |
<dict> | |
<key>SuccessfulExit</key> | |
<false/> | |
</dict> | |
<key>Label</key> | |
<string>com.docker.boot2docker</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/boot2docker</string> | |
<string>up</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>StandardErrorPath</key> | |
<string>/usr/local/var/log/boot2docker.err.log</string> | |
<key>StandardOutPath</key> | |
<string>/usr/local/var/log/boot2docker.out.log</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@if-kenn Thanks!