Easily Set Up Jenkins in Docker: A Complete Tutorial.

Easily Set Up Jenkins in Docker: A Complete Tutorial.

Introduction.

In the world of software development, continuous integration and continuous delivery (CI/CD) have become crucial practices for ensuring fast, efficient, and reliable software releases. Jenkins, one of the most popular automation servers, is widely used for building, testing, and deploying code. However, traditional Jenkins setups often require managing complex server environments and dependencies. This is where Docker comes in, providing a lightweight, consistent, and scalable way to run Jenkins in an isolated container.

Running Jenkins in a Docker container simplifies the setup and management of Jenkins by packaging it with its dependencies and configuration in a single container. Docker allows you to easily deploy Jenkins across different environments without worrying about inconsistencies or conflicts. This method is ideal for developers and teams who want a clean, reproducible Jenkins environment that is portable and easy to scale.

In this tutorial, we’ll guide you through the process of setting up Jenkins inside a Docker container. You’ll learn how to install Docker, pull the official Jenkins Docker image, configure the container to run Jenkins, and access the Jenkins web interface. Additionally, we’ll explore how to persist Jenkins data using Docker volumes, ensuring your configuration and build data remain intact even if the container is stopped or removed.

Whether you’re a beginner looking to get started with Jenkins or an experienced developer seeking a more streamlined setup, this guide will walk you through every step. By the end of this tutorial, you’ll have a fully functional Jenkins instance running in a Docker container, ready to automate your CI/CD pipelines with minimal effort.

Let’s get started by setting up Jenkins inside Docker and bringing automation to your development workflow!

Create EC2 instance on Amazon Linux machine.

Screenshot2025 03 30221714 ezgif.com optipng
Screenshot2025 03 30221727 ezgif.com optipng
Screenshot2025 03 30221743 ezgif.com optipng

Edit the inbound rules.

Screenshot2025 03 30222108 ezgif.com optipng

Connect the Instance.

Screenshot2025 03 30221841 ezgif.com optipng 1
Screenshot2025 03 30221855 ezgif.com optipng

Update use the following command.

sudo yum update -y
Screenshot2025 03 30222157 ezgif.com optipng 1

Install docker to following command.

sudo yum install -y docker
Screenshot2025 03 31040600 ezgif.com optipng

Start the docker service.

sudo service docker start
sudo systemctl enable docker
Screenshot2025 03 31040631 ezgif.com optipng
Screenshot2025 03 31040708 ezgif.com optipng

Verify your version.

sudo docker version
Screenshot2025 03 31040741 ezgif.com optipng

Enter the following command.

sudo docker pull jenkins/jenkins:lts
sudo docker network create jenkins-net
Screenshot2025 03 31040815 ezgif.com optipng
Screenshot2025 03 31040956 ezgif.com optipng
sudo docker run --name jenkins --network jenkins-net -d \ 
-p 8080:8080 -p 50000:50000 \
-v jenkins_home:/var/jenkins_home \
jenkins/jenkins:lts
Screenshot2025 03 31041051 ezgif.com optipng
sudo docker exec jenkins cat /var/jenkins_home/secrets/initialAdminpassword
Screenshot2025 03 31041115 ezgif.com optipng

Enter your IP address on your browser and open your jenkins dashboard.

Screenshot2025 03 31041158 ezgif.com optipng

Conclusion.

Setting up Jenkins inside a Docker container offers a simple, scalable, and efficient way to manage your continuous integration and continuous delivery (CI/CD) pipelines. By leveraging Docker, you’ve ensured that your Jenkins environment is portable, isolated, and easy to deploy across different environments, making it perfect for both development and production settings.

Throughout this guide, we’ve covered the essential steps to get Jenkins running inside a Docker container, including installing Docker, pulling the Jenkins image, running the container, and setting up persistent storage with Docker volumes. With Jenkins now up and running, you can begin automating your builds, tests, and deployments with minimal effort, all while maintaining a clean and reproducible environment.

This setup also makes scaling Jenkins instances easier. Whether you need to add additional Jenkins agents or integrate Jenkins with other services in your Dockerized environment, Docker’s flexibility ensures that Jenkins can grow with your project’s needs.

Remember, while Jenkins in Docker provides a great starting point, there are many other advanced configurations you can explore—such as setting up Jenkins pipelines, integrating version control systems, and securing your Jenkins instance. As your development processes evolve, Docker’s capabilities will allow you to adapt and scale Jenkins to suit your team’s requirements.

By now, you should have a fully operational Jenkins server running in Docker, making your CI/CD processes more streamlined and automated. Happy automating!

Tags: No tags

Add a Comment

Your email address will not be published. Required fields are marked *