Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kangasta/jenkins-examples
Examples for settings up and using Jenkins in and with containers.
https://github.com/kangasta/jenkins-examples
docker docker-compose example jenkins robotframework sonarqube wsl wsl-ubuntu
Last synced: 3 months ago
JSON representation
Examples for settings up and using Jenkins in and with containers.
- Host: GitHub
- URL: https://github.com/kangasta/jenkins-examples
- Owner: kangasta
- License: mit
- Created: 2020-12-15T17:12:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-16T18:02:00.000Z (about 1 year ago)
- Last Synced: 2024-08-02T05:15:09.819Z (6 months ago)
- Topics: docker, docker-compose, example, jenkins, robotframework, sonarqube, wsl, wsl-ubuntu
- Language: Dockerfile
- Homepage:
- Size: 49.8 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> [!WARNING]
> __Deprecated:__ updated version of this guide is available on [CI/CD Tutorials website](https://cicd-tutorials.net/).# Jenkins examples
This repository contains examples for settings up and using Jenkins in and with containers.
Note that by default each of the example docker compose configurations will create their own volumes for the data. This might not be what you want. In order to use the same volumes for every docker compose configuration, run docker compose with `-p` (or `--project-name`) option. This can also be done by setting `COMPOSE_PROJECT_NAME` environment variable:
```bash
export COMPOSE_PROJECT_NAME=jenkins
```## Installing Docker
See [Get Docker](https://docs.docker.com/get-docker/) for installation instructions.
If you use Docker a lot on Mac or Windows system, the recommended Docker Desktop is likely a good option for you. Note that, since January 2022, it has required paid subscription if used for commercial development.
Alternatively, Windows users can [install Docker on top of WSL2](./docker-on-wsl/). For Mac users there are alternatives, such as [Colima](https://github.com/abiosoft/colima), available.
## Jenkins image with Docker-in-Docker support
In order to run Jenkins container with Docker-in-Docker support, `cd` into [dind-jenkins](./dind-jenkins/) directory and run `docker compose up`. See Dockerfile and docker compose.yml for the configuration details.
```bash
cd dind-jenkins/# If you want to see logs in the current terminal
docker compose up --build# Or if you want to run the container in the background
docker compose up --build --detach
```The initial admin password can be easily printed with `docker compose exec`:
```bash
docker compose exec jenkins cat /var/jenkins_home/secrets/initialAdminPassword
```In order to get started the suggested plugins are often good a starting point. If you are planning to create pipeline projects with stages running in on-demand Docker containers, you will also need [Docker Pipeline](https://plugins.jenkins.io/docker-workflow/) plugin. This can be installed through the [Manage Jenkins > Manage plugins](http://localhost:8080/pluginManager/available) menu.
## Other examples
For other examples, detailed descriptions are available in the directory specific README files:
- [Build status pipelines and Job DSL](./build-status-pipelines)
- [Jenkins and SonarQube](./sonarqube-jenkins)
- [Parallel Robot Framework pipeline](./parallel-robot-pipeline)
- [Deploy application to Kubernetes with Ansible](./ansible-kubernetes/)