The project's goal is to provide a ready-made, easily-modifiable DevOps toolkit in a Docker container. The container toolkit includes the latest copies of Jenkins, Jenkins plugins, and the most common DevOps tools frequently used with Jenkins. These DevOps tools include Git, AWS CLI, Terraform, Packer, Python, Docker, Docker Compose, cURL, and jq. The container is designed to be a short-lived, stood up, used for CI/CD, and torn down, and is ideal for the Cloud.
The Jenkins DevOps Toolkit
image is based on the latest jenkins/jenkins:latest
Docker image. The Jenkins Docker image is based on Debian GNU/Linux 9 (stretch).
Based on latest packages as of 2018.04.19:
Built Output
*** INSTALLED SOFTWARE VERSIONS ***
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
Python 3.5.3
Docker version 18.03.0-ce, build 0520e24
docker-compose version 1.21.0, build 5920eb0
docker-py version: 3.2.1
CPython version: 3.6.5
OpenSSL version: OpenSSL 1.0.1t 3 May 2016
git version 2.11.0
jq-1.5-1-a5b5cbe
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.5)
aws-cli/1.15.4 Python/3.5.3 Linux/4.9.87-linuxkit-aufs botocore/1.10.4
Packer v1.2.2
Terraform v0.11.7
The Jenkins DevOps Toolkit Docker container uses two bind-mounted directories on the host. The first, the Jenkins' home directory, contains all required configuration. The second directory is used for backups, created using the Jenkins Backup plugin. Additionally, Jenkins can back up its configuration, using the SCM Sync plugin, to GitHub. Both these backup methods require additional configuration.
Don't want to read the instructions?
sh ./stack_deploy_local.sh
Jenkins will be running on http://localhost:8083
.
The Dockerfile
loads plugins from the plugin.txt
. Currently, it installs two backup plugins. You can add more plugins to this file, before building Docker image. See the Jenkins Plugins Index for more.
Built Output
Downloading thinBackup:1.9
Downloading backup:1.6.1
---------------------------------------------------
INFO: Successfully installed 2 plugins.
---------------------------------------------------
The latest garystafford/jenkins-devops
image is available on Docker Hub.
Optionally, to create a new image from the Dockerfile
docker build -t garystafford/jenkins-devops:2018.04.19 .
Create a new container from garystafford/jenkins-devops:2018.04.19
image
sh ./stack_deploy_local.sh
Check logs
docker logs $(docker ps | grep jenkins-devops | awk '{print $1}')
This script also creates local directories ~/jenkins_home/
and ~/jenkins_backup/
.
All relevant Jenkins files are stored in bind-mounted ~/jenkins_home/
directory.
Backups are saved to the bind-mounted ~/jenkins_backup/
host directory, using the Jenkins' backup plugin.
Jenkins will be running on http://localhost:8083
, by default.
Install the SCM Sync Configuration Plugin (scm-sync-configuration:0.0.10
)
Set git/GitHub repo path to your config repo, for example: https://<personal_access_token>@github.com/<your_username>/jenkins-config.git
docker exec -it $(docker ps | grep jenkins-devops | awk '{print $1}') \
bash -c 'git config --global user.email "garystafford@rochester.rr.com"'
docker exec -it $(docker ps | grep jenkins-devops | awk '{print $1}') \
bash -c 'git config --global user.name "Gary A. Stafford"'
Copy any required AWS SSL key pairs to bind-mounted jenkins_home
directory.
mkdir -p ~/jenkins_home/.ssh
# used for git SCM Sync plugin
cp ~/.ssh/id_rsa ~/jenkins_home/.ssh/id_rsa
cp ~/.ssh/id_rsa.pub ~/jenkins_home/.ssh/id_rsa.pub
# in container for cloning config if on github
docker exec -it $(docker ps | grep jenkins-devops | awk '{print $1}') \
bash -c 'ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts'
# used for Consul cluster project
cp ~/.ssh/consul_aws_rsa* ~/jenkins_home/.ssh
Copy any required AWS credentials to bind-mounted jenkins_home
directory
# used to connect to AWS with Packer/Terraform
cp ~/credentials/jenkins_credentials.env ~/jenkins_home/
Fix time skew with container time:
docker run -it --rm --privileged \
--pid=host debian nsenter -t 1 -m -u -n -i \
date -u $(date -u +%m%d%H%M%Y)
To modify, build, and test locally, replacing my Docker Hub repo name switch your own:
# build
docker build --no-cache -t garystafford/jenkins-devops:2018.04.19 .
# run temp copy only
docker run -d --name jenkins-temp -p 8083:8080/tcp -p 50000:50000/tcp garystafford/jenkins-devops:2018.04.19
# push
docker push garystafford/jenkins-devops:2018.04.19
# clean up container and local bind-mounted directory
rm -rf ~/jenkins_home
docker rm -f devopstack_jenkins-devops_1