Created
June 10, 2018 12:54
-
-
Save masiuchi/b5238c8d863960019af3b60740e50c32 to your computer and use it in GitHub Desktop.
Property list file for MySQL 5.5 on Docker.
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>KeepAlive</key> | |
<true/> | |
<key>Label</key> | |
<string>com.masiuchi.docker.mysql55</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/docker</string> | |
<string>run</string> | |
<string>-d</string> | |
<string>-p</string> | |
<string>13306:3306</string> | |
<string>-e</string> | |
<string>MYSQL_ALLOW_EMPTY_PASSWORD=yes</string> | |
<string>mysql:5.5</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>WorkingDirectory</key> | |
<string>/usr/local</string> | |
<key>StandardErrorPath</key> | |
<string>/usr/local/var/log/docker-mysql55.log</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment