How to Install Jenkins using Docker Compose – The Process

Madhu Yadav June 14, 2022
How to Install Jenkins using Docker Compose

Jenkins and Docker sync well together. Cloud containers are one powerful tool for building software in various environments; moreover, Jenkins is the most suitable tool to run inside a container. 

Although the frequently occurring questions are: 

  • How do you manage a Jenkins controller and agents together in Docker? 
  • What if the container crashes? And 
  • How do you back up the data after Jenkins is containerized? 

This article answers all your questions with the clarity of how to install Jenkins the right way. Using Docker compose will undoubtedly make things faster and reusable. So let’s get started with the basic answers. 

What is Jenkins?

Jenkins is a self-contained, open-source automation tool that can be used to automate all tasks related to building, testing, and delivering or deploying software. Jenkins is synonymous with continuous integration and continuous delivery (CI/CD).

The below image shows Jenkins integration with various DevOps tools.

Jenkins integration with various DevOps tools

[Also Read: Best productivity tools for mobile app developers]

What are containers?

Containers are software packages containing all the necessary elements to run in any environment. Multiple containers can run on the same machine and share the OS kernel with other containers.

What are containers

What is Docker Compose?

It’s a tool for defining how to run multiple containers in a single configuration file and start, stop, and restart them with a single command.

Running Jenkins with Docker compose 

Prerequisites

Tap for our assistance

Run these commands in terminal

Change Host Name to Jenkins

> sudo hostname Jenkins

Install docker-compose

> sudo apt update

> sudo apt-get install docker-compose -y

Check version of docker by command 

> docker-compose --version

Add current user to the docker group

> sudo usermod -aG docker $USER

 Create Directory

> mkdir ~/jenkins

Jenkins setup

Create docker-compose.yml fileExecute yaml file

> sudo vi docker-compose.yml

version: '3.3'

services:

jenkins:

image: jenkins/jenkins:lts

restart: unless-stopped

privileged: true

user: root

ports:

- 8080:8080

container_name: jenkins

volumes:

- ~/jenkins:/var/jenkins_home

- /var/run/docker.sock:/var/run/docker.sock

- /usr/local/bin/docker:/usr/local/bin/docker

Note: Paste this code in the yaml file.

Execute yaml file

> sudo docker-compose up -d

Now you can access the browser with the ip of the instance with port 8080. It will show up like the page below.

access the browser with the ip of the instance with port 8080

To generate an Administrator password, use the below command.

> docker exec jenkins-lts cat /var/jenkins_home/secrets/initialAdminPassword

                                                 OR 

> docker logs jenkins | less

Enter the password and continue to the next page.

Select Install Suggested Plugins on the next page; next, Enter a username and password and click Save and Continue.

Install Suggested Plugins

The next page allows you to change your controller’s hostname. You can accept the default and click Save and Finish.

change your controller's hostname

Jenkins is ready to set up an agent!

What are some of the top business benefits of running Jenkins in a docker container? 

Businesses prefer Jenkins in a docker container when they want most of the configuration from the server under control. Most organizations keep Jenkins in the pipeline when they want the ability to run the server locally on any machine while experimenting with new features and configurations. 

Installing Jenkins with Docker composer will help businesses with:

  • Easy deployment and scalability 
  • Higher density with more workload running capacity 
  • Faster delivery of applications
  • Flexible management of environment

Wrapping up

In this article, we discovered how to configure a Jenkins controller with Docker compose. We asked you to set it up in volume so you can save the instance data between restarts. 

This is just the beginning of Docker Composer’s capabilities. You can finally encounter how the tool helps you administer CI/CD infrastructure. It’s time to get started with Docker compose today to extend the above mentioned benefits in your pipeline. 

Need assistance? Consult our experts for personalized solutions.

THE AUTHOR
Madhu Yadav
Software Engineer - Devops
Prev PostNext Post
Read more blogs
on premise vs cloud

On-premise vs. cloud - Analyzing the benefits, risks and costs for enterprises

Are you standing at the crossroads of a technological revolution, pondering the question that's on every modern enterprise's mind: on-premise vs. cloud? The stakes are higher than ever. With the global cloud computing market poised to soar to an astonishing $2.3 trillion by 2032, the future seems to be whispering its secret preference. Yet, the…

Sudeep Srivastava
cloud cost optimization

Navigating the cloud cost landscape - Strategies for efficient spending

It is no news that cloud computing has become an integral part of the modern business world. The movement toward cloud computing, which was gradual and steady in the last decade, was accelerated and catalyzed by the COVID-19 pandemic. So much so that by the end of 2022, end-user spending on public cloud services reached…

Sudeep Srivastava
benefits of cloud managed services

Why Cloud-Managed Services Are a Strategic Necessity for Modern Enterprises

In the last couple of years, the cloud industry has witnessed significant growth due to the global COVID-19 pandemic. The global lockdown compelled companies to quickly cobble together the remote work model, which is still in use as many organizations realized that working from home increases flexibility and decreases overhead. Unsurprisingly, the global pandemic created…

Sudeep Srivastava