Created
September 28, 2021 17:45
-
-
Save harshityadav95/f9c4dc1ddb41c1b5ee2ad859de287dc1 to your computer and use it in GitHub Desktop.
How to Setup Docker in Jenkins on Mac
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>Label</key> | |
<string>homebrew.mxcl.jenkins-lts</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/opt/openjdk@11/bin/java</string> | |
<string>-Dmail.smtp.starttls.enable=true</string> | |
<string>-jar</string> | |
<string>/usr/local/opt/jenkins-lts/libexec/jenkins.war</string> | |
<string>--httpListenAddress=127.0.0.1</string> | |
<string>--httpPort=8080</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/Docker.app/Contents/Resources/bin/:/Users/hyadav23/Library/Group\ Containers/group.com.docker/Applications/Docker.app/Contents/Resources/bin</string> | |
</dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment