https://github.com/fsamin/docker-jenkins
https://github.com/fsamin/docker-jenkins
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fsamin/docker-jenkins
- Owner: fsamin
- Created: 2014-11-04T21:23:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-04T21:28:11.000Z (over 10 years ago)
- Last Synced: 2025-01-30T00:49:41.518Z (4 months ago)
- Language: Shell
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-jenkins
==============##Dockerfile
FROM fsamin/docker-oracle-java7
MAINTAINER François Samin [email protected]
ADD http://mirrors.jenkins-ci.org/war/latest/jenkins.war /opt/jenkins.war
RUN ln -sf /jenkins /root/.jenkins
ENTRYPOINT [“java”, “-jar”, “/opt/jenkins.war”]
EXPOSE 8080 VOLUME [“/jenkins”]
CMD [“”]
##Start the container
docker run -d -p 8080:8080 –privileged -t -v /data/jenkins:/jenkins fsamin/docker-jenkins