Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/johanneshiry/jenkins-java-8-11-17-docker

Dockerfile to create a Jenkins CI image with Java 8, Java 11 and Java 17 support.
https://github.com/johanneshiry/jenkins-java-8-11-17-docker

cd ci continuous-delivery continuous-deployment continuous-integration continuous-testing docker java java11 java17 java8 jenkins jenkinsci shell

Last synced: about 1 month ago
JSON representation

Dockerfile to create a Jenkins CI image with Java 8, Java 11 and Java 17 support.

Awesome Lists containing this project

README

        

# jenkins-java-8-11-docker
Dockerfile to create a Jenkins CI image with Java 8, Java 11 and Java 17 support incl. installed docker-ce inside the Jenkins container to allow for docker container execution within Jenkins.
Furthermore, [ecCodes](https://confluence.ecmwf.int/display/ECC) is installed as this is a required dependency for our integration tests in [DWDWeatherTools](https://github.com/ie3-institute/DWDWeatherTools).

## Additional configuration
Depending on your firewall settings and if you want to use docker container inside your jenkins pipeline
(e.g. the famous testcontainers library) you might need to adapt your firewall settings to allow jenkins
to connect to container on the same host. The following command adds the required permissions for the
docker0 interface:

```shell
sudo ufw allow in on docker0 from 172.17.0.0/16 to 172.17.0.0/16
```