Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/johanneshiry/jenkins-java-8-11-17-docker
- Owner: johanneshiry
- License: bsd-3-clause
- Created: 2020-09-24T08:47:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-12T19:50:37.000Z (almost 3 years ago)
- Last Synced: 2024-09-30T18:04:51.292Z (about 2 months ago)
- Topics: cd, ci, continuous-delivery, continuous-deployment, continuous-integration, continuous-testing, docker, java, java11, java17, java8, jenkins, jenkinsci, shell
- Language: Dockerfile
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```