The Jenkins Continuous Integration and Delivery server.
This is a fully functional Jenkins server, based on the Long Term Support release http://jenkins.io/.
For weekly releases check out jenkinsci/jenkins
docker run -p 8080:8080 -p 50000:50000 mcgonagle/jenkins
This will store the workspace in /var/jenkins_home. All Jenkins data lives in there - including plugins and configuration. You will probably want to make that a persistent volume (recommended):
docker run -p 8080:8080 -p 50000:50000 -v /Users/mcgonagle/jenkins:/var/jenkins_home mcgonagle/jenkins
This will store the jenkins data in /your/home on the host. Ensure that /your/home is accessible by the jenkins user in container (jenkins user - uid 1000) or use -u some_other_user parameter with docker run.
Content type
Image
Digest
Size
298.8 MB
Last updated
almost 10 years ago
docker pull mcgonagle/jenkins