Last active
August 15, 2024 08:43
-
-
Save monosoul/11974b36e4f0b9b4d8a5507357c5ec2f to your computer and use it in GitHub Desktop.
Colima init script
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>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin</string> | |
</dict> | |
<key>KeepAlive</key> | |
<dict> | |
<key>SuccessfulExit</key> | |
<true/> | |
</dict> | |
<key>Label</key> | |
<string>homebrew.mxcl.colima</string> | |
<key>LimitLoadToSessionType</key> | |
<array> | |
<string>Aqua</string> | |
<string>Background</string> | |
<string>LoginWindow</string> | |
<string>StandardIO</string> | |
<string>System</string> | |
</array> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/opt/homebrew/opt/colima/bin/colima</string> | |
<string>start</string> | |
<string>-f</string> | |
<string>--network-address</string> | |
<string>--cpu</string> | |
<string>4</string> | |
<string>--memory</string> | |
<string>8</string> | |
<string>--arch</string> | |
<string>aarch64</string> | |
<string>--vm-type=vz</string> | |
<string>--vz-rosetta</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>StandardErrorPath</key> | |
<string>/opt/homebrew/var/log/colima.log</string> | |
<key>StandardOutPath</key> | |
<string>/opt/homebrew/var/log/colima.log</string> | |
<key>WorkingDirectory</key> | |
<string>/Users/me</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment