- Remember to change
/User/name/bin/
to the correct path where boot2docker is installed. - Copy the content of the file above to
~/Library/LaunchAgents/com.github.starfossen.boot2docker.plist
Last active
August 29, 2015 13:56
-
-
Save Starefossen/8914105 to your computer and use it in GitHub Desktop.
Autoboot boot2docker on system startup.
This file contains hidden or 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>Label</key> | |
<string>com.github.starfossen.boot2docker</string> | |
<key>StandardOutPath</key> | |
<string>/Users/name/bin/boot2docker.log</string> | |
<key>StandardErrorPath</key> | |
<string>/Users/name/bin/boot2docker.err</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/Users/name/bin/boot2docker</string> | |
<string>up</string> | |
</array> | |
<key>Debug</key> | |
<true/> | |
<key>KeepAlive</key> | |
<false/> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment