惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
小众软件
小众软件
D
Docker
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
V2EX
博客园 - 叶小钗
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
IT之家
IT之家
博客园 - 司徒正美
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
30-Day Cloud & DevOps Challenge: Day 10 — Docker in CI
Michelle · 2026-05-04 · via DEV Community

Michelle

Yesterday, my Jenkins pipeline could install dependencies and build the frontend.

But there was a missing piece: Docker. Without it, I couldn't package my applications into containers — the whole point of this challenge!

Today, I fixed that. I configured Jenkins to build Docker images for both my backend and frontend, turning my CI pipeline into a complete build system.


First: Why Docker in CI?

Before Docker in CI

The pipeline could:

  • Pull code from GitHub
  • Install dependencies
  • Build the frontend
  • Could NOT create Docker images

After Docker in CI

The pipeline can:

  • Pull code from GitHub
  • Install dependencies
  • Build the frontend
  • Create Docker images for backend AND frontend

Why this matters: Docker images are what actually get deployed to production. Without them, you can't run your app anywhere else.


Step 1: Giving Jenkins Docker Access

The Problem

Jenkins runs in a container. By default, containers can't access the host's Docker daemon.

+------------------+     +------------------+
|     Jenkins      |     |   Docker Daemon  |
|    Container     |  X  |    (on host)     |
| "I need Docker"  |---->|  "Cannot reach"  |
+------------------+     +------------------+

Enter fullscreen mode Exit fullscreen mode

The Solution: Docker Socket Mounting

Mount the host's Docker socket into the Jenkins container:

# jenkins/docker-compose.yml
services:
  jenkins:
    user: root                      # Run as root for permissions
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock  # Mount Docker socket
    environment:
      - DOCKER_HOST=unix:///var/run/docker.sock   # Tell Jenkins where Docker is

Enter fullscreen mode Exit fullscreen mode

After Mounting

+------------------+     +------------------+
|     Jenkins      |     |   Docker Daemon  |
|    Container     |  ✓  |    (on host)     |
| "I need Docker"  |---->|  "Here you go!"  |
+------------------+     +------------------+

Enter fullscreen mode Exit fullscreen mode


Step 2: Installing Docker in Jenkins Container

Even with the socket mounted, Jenkins needs the Docker CLI tool.

# Enter Jenkins container
sudo docker exec -it jenkins bash

# Install Docker CLI
apt-get update
apt-get install -y docker.io

# Verify it works
docker --version

Enter fullscreen mode Exit fullscreen mode

Expected output:

Docker version 26.1.5, build a72d7cd

Enter fullscreen mode Exit fullscreen mode


Step 3: Adding Docker Build to Pipeline

The Docker Build Stage

stage('Docker Build') {
    steps {
        echo 'Building Docker images...'
        sh 'docker build -t myapp-backend:latest ./backend'
        sh 'docker build -t myapp-frontend:latest ./frontend'
    }
}

Enter fullscreen mode Exit fullscreen mode

What Each Command Does

Command What it does
docker build Creates a Docker image from a Dockerfile
-t myapp-backend:latest Tags the image with a name and version
./backend Tells Docker where to find the Dockerfile

The Complete Jenkinsfile (Docker Stage Added)

pipeline {
    agent any

    stages {
        stage('Checkout') {
            steps {
                echo 'Cloning repository...'
                checkout scm
            }
        }

        stage('Backend Dependencies') {
            steps {
                dir('backend') {
                    sh 'npm install'
                }
            }
        }

        stage('Frontend Build') {
            steps {
                dir('frontend') {
                    sh 'npm install'
                    sh 'npm run build'
                }
            }
        }

        stage('Docker Build') {
            steps {
                echo 'Building Docker images...'
                sh 'docker build -t myapp-backend:latest ./backend'
                sh 'docker build -t myapp-frontend:latest ./frontend'
            }
        }

        stage('Success') {
            steps {
                echo 'Pipeline completed successfully!'
            }
        }
    }
}

Enter fullscreen mode Exit fullscreen mode


Step 4: Understanding Docker Build in CI

What Happens During Docker Build

Stage: Docker Build
    │
    ├── Backend Image
    │   ├── FROM node:18-alpine
    │   ├── WORKDIR /app
    │   ├── COPY package*.json ./
    │   ├── RUN npm install
    │   ├── COPY . .
    │   └── CMD ["npm", "start"]
    │
    └── Frontend Image
        ├── FROM nginx:alpine
        ├── COPY build /usr/share/nginx/html
        └── EXPOSE 80

Enter fullscreen mode Exit fullscreen mode

Image Sizes

Image Size Why
myapp-backend:latest ~135MB Node.js + dependencies
myapp-frontend:latest ~23MB Just nginx + static files

Step 5: Testing Docker Build Locally

Before trusting Jenkins, test manually:

# Build backend image
cd backend
docker build -t test-backend .
docker run -p 3001:5000 test-backend
curl http://localhost:3001/health

# Build frontend image
cd ../frontend
npm run build
docker build -t test-frontend .
docker run -p 8080:80 test-frontend
# Open browser to http://localhost:8080

Enter fullscreen mode Exit fullscreen mode


Step 6: Running the Pipeline

Trigger the Build

  1. Go to Jenkins -> microservices-ci
  2. Click "Build Now"
  3. Watch the console output

Console Output

[Pipeline] stage
[Pipeline] { (Docker Build)
[Pipeline] echo
Building Docker images...
[Pipeline] sh
+ docker build -t myapp-backend:latest ./backend
#1 [internal] load build definition from dockerfile
#1 transferring dockerfile: 149B done
#1 DONE 0.2s
#2 [internal] load metadata for docker.io/library/node:18-alpine
#2 DONE 35.8s
#3 [1/5] FROM docker.io/library/node:18-alpine
#3 DONE 0.0s
...
Successfully built dd22467f3082
Successfully tagged myapp-backend:latest

[Pipeline] sh
+ docker build -t myapp-frontend:latest ./frontend
#1 [internal] load build definition from dockerfile
...
Successfully built 54515d7d59a9
Successfully tagged myapp-frontend:latest

[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Success)
[Pipeline] echo
Pipeline completed successfully!
Finished: SUCCESS

Enter fullscreen mode Exit fullscreen mode


Docker in CI: Before vs After

Aspect Before (Day 9) After (Day 10)
Docker access No Yes
Backend image Not built Built automatically
Frontend image Not built Built automatically
Ready for deployment No Yes

Troubleshooting

Issue 1: "docker: command not found"

Error:

+ docker build
docker: command not found

Enter fullscreen mode Exit fullscreen mode

Fix: Install Docker CLI in Jenkins container:

sudo docker exec jenkins bash -c "apt-get update && apt-get install -y docker.io"

Enter fullscreen mode Exit fullscreen mode

Issue 2: "Permission denied"

Error:

Got permission denied while trying to connect to the Docker daemon

Enter fullscreen mode Exit fullscreen mode

Fix: Run Jenkins as root user in docker-compose.yml:

services:
  jenkins:
    user: root

Enter fullscreen mode Exit fullscreen mode

Issue 3: Build context issues

Error:

COPY failed: file not found in build context

Enter fullscreen mode Exit fullscreen mode

Fix: Check your Dockerfile paths. The build context is the directory you specify in docker build -t name ./path.


Key Takeaways

  • Docker in CI = Deployable artifacts — Without Docker, you can't deploy
  • Mount the Docker socket — Jenkins container needs access to host's Docker
  • Install Docker CLI — The container needs the docker command
  • Tag images meaningfullylatest is fine, but version tags are better
  • Build once, deploy anywhere — CI builds images, they can run anywhere

Resources


Let's Connect!

Have you integrated Docker with Jenkins before? What challenges did you face with Docker in CI?

Drop a comment or connect on LinkedIn. Let's learn together!