Contact Us : +91 90331 80795

Blog Details

Breadcrub
Blog Detail

Step-by-Step Guide: Setting Up a CI-CD Pipeline with Docker

In today’s fast-moving software world, developers must ensure that their applications are built, tested, and deployed quickly and without errors. This is where Continuous Integration (CI) and Continuous Deployment (CD) come in. CI/CD helps automate the entire software development process, reducing the chances of mistakes and making sure updates reach users faster.
 
One of the best tools to use in a CI/CD pipeline is Docker. Docker makes it easy to package applications into containers, which means they will run the same way in any environment—whether on a developer’s laptop, a testing server, or a cloud platform.
 
In this guide, we will walk you through setting up a complete CI/CD pipeline using Docker, from installation to deployment.
 
 

What is a CI/CD Pipeline?

 
A CI/CD pipeline is a set of automated processes that developers use to:
 
  • Build the application

  • Test the code to catch any errors

  • Package the application into a container (Docker)
  • Deploy the application to a server or cloud platform
  • Monitor performance and fix issues if needed

 

Why is a CI/CD Pipeline Important?

 
Without CI/CD, software development involves a lot of manual work. Developers must build the code, test it, move files to servers, and make sure everything is working correctly. This takes a lot of time and can lead to mistakes.
 
With a CI/CD pipeline, the process becomes automatic. The system runs tests, builds the application, and deploys it without requiring manual intervention, allowing teams to work faster and more efficiently.
 
 

How Does Docker Help in CI/CD?

 
Docker is a tool that allows applications to be packaged in a way that ensures they run the same way everywhere. Using Docker in a CI/CD pipeline offers several benefits:
 
  • Consistency – The application runs the same way on every machine, eliminating environment issues.

  • Scalability – Containers allow applications to scale easily as demand increases.

  • Efficiency – Docker speeds up builds, testing, and deployment processes.
  • Automation – Developers do not need to manually configure servers every time they release a new version.

 

Step-by-step guide to Setting Up a CI/CD Pipeline with Docker

 
Now, let’s go step by step to set up a CI/CD pipeline using Docker. We will cover everything from installing the necessary tools to deploying your application.
 

Step 1: Install Docker and CI/CD Tools

 
To get started, you need to install several tools:
 
  • Docker – This is the core tool for containerizing your application.

  • GitHub, GitLab, or Bitbucket – These are version control platforms where your code will be stored.

  • Jenkins, GitHub Actions, or GitLab CI/CD – These are CI/CD tools that will automate your development process.

 

Install Docker
 
Docker can be installed on Windows, macOS, or Linux. Download it from the official Docker website and follow the instructions for your operating system.
 

To check if Docker is installed, open your terminal and run:

docker --version

You should see an output showing the installed Docker version.

 

Step 2: Set Up Your Git Repository

 
A Git repository is where your application code is stored. This is necessary because the CI/CD pipeline will fetch code from here every time a new update is pushed.
 
Steps to Set Up a Git Repository
 
1. Create a new repository on GitHub, GitLab, or Bitbucket.
 

2. Clone the repository to your local machine:

git clone https://github.com/yourusername/your-repository.git

 

3. Add your application code to the repository.

 
4. Include a Dockerfile in the repository to define how your application runs in a container.
 

5. Commit and push your code:

git add .
git commit -m "Initial commit"
git push origin main

 

Step 3: Write a Dockerfile


 
A Dockerfile is a script that tells Docker how to build your application inside a container.
 
Example Dockerfile for a Node.js Application:
# Use Node.js base image
FROM node:18

# Set the working directory inside the container
WORKDIR /app

# Copy package.json and install dependencies
COPY package.json ./
RUN npm install

# Copy the application files
COPY . .

# Expose the port the app will run on
EXPOSE 3000

# Start the application
CMD ["node", "server.js"]
 
This file ensures that your application is packaged correctly inside a Docker container.

 

Step 4: Create a CI/CD Pipeline Configuration

 
The next step is to configure your CI/CD tool. We will use GitHub Actions for this example.
 
Create a Workflow File:
 
1. In your repository, create a new folder: .github/workflows/
 
2. Inside this folder, create a file called docker-ci.yml
 
3. Add the following content:
name: CI/CD Pipeline

on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      
      - name: Build Docker image
        run: docker build -t myapp:latest .

      - name: Push Docker image to Docker Hub
        run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} && docker tag myapp:latest mydockerhubuser/myapp:latest && docker push mydockerhubuser/myapp:latest

 

This workflow automatically builds and pushes your application to Docker Hub when you push code to the main branch.

 

Step 5: Deploy the Docker Container

 
After your Docker image is built and stored in Docker Hub, you need to deploy it.
 
Using Docker Compose:
 

Create a docker-compose.yml file to define how the container should run:

version: '3'
services:
  app:
    image: mydockerhubuser/myapp:latest
    ports:
      - "3000:3000"

 

Run the deployment using:
docker-compose up -d

 

Automate Your DevOps with Us!

 
At Sparkle Web, we specialize in setting up CI/CD pipelines with Docker, Kubernetes, and cloud solutions to help businesses automate deployments and streamline software development.
 
Need expert help? Let’s talk! Contact us!

    Author

    • Owner

      Dipak Pakhale

      A skilled .Net Full Stack Developer with 8+ years of experience. Proficient in Asp.Net, MVC, .Net Core, Blazor, C#, SQL, Angular, Reactjs, and NodeJs. Dedicated to simplifying complex projects with expertise and innovation.

    Contact Us

    Free Consultation - Discover IT Solutions For Your Business

    Unlock the full potential of your business with our free consultation. Our expert team will assess your IT needs, recommend tailored solutions, and chart a path to success. Book your consultation now and take the first step towards empowering your business with cutting-edge technology.

    • Confirmation of appointment details
    • Research and preparation by the IT services company
    • Needs assessment for tailored solutions
    • Presentation of proposed solutions
    • Project execution and ongoing support
    • Follow-up to evaluate effectiveness and satisfaction

    • Email: info@sparkleweb.in
    • Phone Number:+91 90331 80795
    • Address: 303 Capital Square, Near Parvat Patiya, Godadara Naher Rd, Surat, Gujarat 395010