https://github.com/arranbartish/continuous-integration
Setup of jenkins server
https://github.com/arranbartish/continuous-integration
Last synced: 4 months ago
JSON representation
Setup of jenkins server
- Host: GitHub
- URL: https://github.com/arranbartish/continuous-integration
- Owner: arranbartish
- License: mit
- Created: 2017-08-29T14:24:41.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-05T18:02:52.000Z (almost 9 years ago)
- Last Synced: 2025-02-23T21:27:48.961Z (over 1 year ago)
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# continuous-integration
# docker hub project
https://hub.docker.com/r/arranbartish/continuous-integration/
```
$ docker build -t continuous-integration .
$ docker run -d --name ci-data continuous-integration echo "data-only container for jenkins"
$ docker run -d -p 8081:8080 --name ci --volumes-from ci-data continuous-integration
$ docker run -p 8081:8081 continuous-integration
```