https://github.com/lurst/tiny_service_with_jenkins2
A tiny python app that is built using Jenkins with a Jenkinsfile as a pipeline
https://github.com/lurst/tiny_service_with_jenkins2
jenkins2 jenkinsfile microcode pipeline
Last synced: 2 months ago
JSON representation
A tiny python app that is built using Jenkins with a Jenkinsfile as a pipeline
- Host: GitHub
- URL: https://github.com/lurst/tiny_service_with_jenkins2
- Owner: LuRsT
- License: unlicense
- Created: 2017-03-31T11:22:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-07T12:10:48.000Z (over 8 years ago)
- Last Synced: 2025-03-13T00:41:20.373Z (7 months ago)
- Topics: jenkins2, jenkinsfile, microcode, pipeline
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# I am tiny
A tiny python app that is built using Jenkins with a `Jenkinsfile` as a pipeline
This is the smallest example I found to learn about `Jenkinsfile`s
## How to use:
docker pull jenkins
mkdir /tmp/jenkins
docker run -p 8080:8080 -p 50000:50000 -v /tmp/jenkins:/var/jenkins_home jenkinsPoint your browser to http://localhost:8080. Jenkins will ask for a password,
open a new terminal and do this:cat ~/secrets/initialAdminPassword
Copy paste the result into your browser and proceed with the setup wizard.
Next you want to setup a new project using "Pipeline", there's an option at the
bottom to get the `Jenkinsfile` from an SCM, pick this repo and press "Build
now".Done!