Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlossg/jenkinsfile-runner-example
https://github.com/carlossg/jenkinsfile-runner-example
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/carlossg/jenkinsfile-runner-example
- Owner: carlossg
- License: apache-2.0
- Created: 2020-11-15T11:51:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-23T07:13:22.000Z (almost 3 years ago)
- Last Synced: 2024-10-15T13:29:59.559Z (3 months ago)
- Language: Dockerfile
- Size: 15.6 KB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jenkinsfile-runner-example
Example that can run with Jenkinsfile Runner launching a simple Maven build.
Used by:
* [jenkinsfile-runner-google-cloud-run](https://github.com/carlossg/jenkinsfile-runner-google-cloud-run)
## Running
Build the Jenkinsfile-runner custom docker image
```
docker build -t jenkinsfilerunner-example .
```It can be directly ran with:
```
docker run -ti --rm \
-v $(pwd)/Jenkinsfile:/workspace/Jenkinsfile \
-v ~/.m2/repository/:/root/.m2/repository/ \
-w /workspace jenkinsfilerunner-example
```