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.

Madhu Yadav
THE AUTHOR
Madhu Yadav
Software Engineer - Devops
Prev PostNext Post
Read more blogs
cloud computing in logistics

Unlock Trapped Revenue by Using Cloud Computing in Logistics

The logistics industry is constantly evolving, and companies are always looking for ways to improve their operations. Cloud in the logistics business has emerged as a game-changing technology for the industry, providing them with greater flexibility, scalability, and cost savings. By using cloud technology in logistics, companies can streamline their processes, reduce their hardware and…

Sudeep Srivastava
ERP Software Development

Cloud ERP-Benefits, Types, Process, Costs

According to Gartner, by 2025, the cloud market is expected to be double the size of the non-cloud market within the enterprise application software market, which signals the growing adoption of cloud-based software, including cloud ERP integration. Different cloud ERP systems are available, including standalone, integrated, and industry-specific systems. The process of implementing cloud ERP…

Sudeep Srivastava
cost of SaaS application on AWS cloud

How much does it cost to build a SaaS application on AWS?

The SaaS industry has grown to a level where its use cases and benefits do not need any introduction. Between the application getting ready-to-use instantaneously to high scalability and a speedier proof-of-concept testing, cloud-based SaaS applications have become a part of a market size that is expected to be worth $195.20 billion in 2023. The…

Sudeep Srivastava