Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/carlossg/jenkinsfile-runner-example


https://github.com/carlossg/jenkinsfile-runner-example

Last synced: about 1 month ago
JSON representation

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
```