Woodpecker CI

Woodpecker CI – A No-Nonsense CI/CD Tool for Self-Hosted Git Workflows What is Woodpecker CI Woodpecker CI is one of those tools that doesn’t try to be everything — and that’s a good thing. It’s a simple, clean continuous integration system you can run on your own infrastructure. No SaaS layers, no vendor lock-in, no massive overhead. You connect it to your Git server — Gitea, GitHub, GitLab, whatever fits — and it runs your build pipelines inside Docker containers. That’s it.

Originally forked

OS: Windows / Linux / macOS
Size: 0.0 MB
Version: 3.8.0
🡣: 5,299 stars

Woodpecker CI – A No-Nonsense CI/CD Tool for Self-Hosted Git Workflows

What is Woodpecker CI

Woodpecker CI is one of those tools that doesn’t try to be everything — and that’s a good thing. It’s a simple, clean continuous integration system you can run on your own infrastructure. No SaaS layers, no vendor lock-in, no massive overhead. You connect it to your Git server — Gitea, GitHub, GitLab, whatever fits — and it runs your build pipelines inside Docker containers. That’s it.

Originally forked from Drone CI, it’s now a community-driven project with a clear focus: fast, portable builds triggered by Git events. Pipelines are written in YAML and executed using container steps. Everything is isolated, traceable, and easy to reproduce.

It’s ideal for small teams, internal infrastructure, or anyone who wants to keep CI/CD simple and under control — especially in places where running Jenkins is overkill and using cloud services isn’t an option.

Technical Summary

Attribute Detail
Supported Platforms Linux (natively), macOS and Windows (via containers)
Pipeline Execution Docker containers, one per step
Git Integration Gitea, GitHub, GitLab, Bitbucket, Codeberg
Pipeline Format YAML (.woodpecker.yml)
Authentication OAuth2, tokens, or basic auth
Licensing Apache 2.0
Typical Deployment Docker, bare-metal, or Kubernetes
Current Version 2.5.0 (as of July 2025)
Website https://woodpecker-ci.org
Containers woodpeckerci/woodpecker-server, woodpeckerci/woodpecker-agent

How It Works

The design is split into two main services: the server and one or more agents.

– The server handles repository connections, webhooks, UI, and pipeline scheduling.
– Agents do the actual work — each pipeline step runs in a Docker container on the agent side.

When someone pushes to a connected repo, the server catches the webhook, reads the pipeline config (.woodpecker.yml), and assigns the job to an available agent. The agent pulls down the code, runs the steps in clean containers, and sends logs and results back to the UI.

There’s no extra orchestration layer, no central database magic, and no special runner binaries. Just clean, reproducible builds in containers.

Quick Setup (Docker)

Here’s a minimal working setup using Docker.

Create a network:

docker network create woodpecker

Start the server:

docker run -d –name woodpecker-server
–network woodpecker
-e WOODPECKER_GITEA=true
-e WOODPECKER_GITEA_URL=https://git.example.com
-e WOODPECKER_GITEA_CLIENT=your-client-id
-e WOODPECKER_GITEA_SECRET=your-secret
-e WOODPECKER_SECRET=shared-secret
-p 8000:8000
woodpeckerci/woodpecker-server

Start the agent:

docker run -d –name woodpecker-agent
–network woodpecker
-e WOODPECKER_SERVER=woodpecker-server:9000
-e WOODPECKER_SECRET=shared-secret
-v /var/run/docker.sock:/var/run/docker.sock
woodpeckerci/woodpecker-agent

Open http://localhost:8000 and link your repo — you’re ready to go.

Example Pipeline File

pipeline:
build:
image: node:20
commands:
– npm install
– npm run test

docker-push:
image: plugins/docker
settings:
repo: my-registry.local/app
tags: latest

Real-World Usage

– Developers running CI in secure, internal environments
– Self-hosted Gitea + Woodpecker setups for in-house projects
– Lightweight CI/CD for microservices — no Jenkins, no Kubernetes required
– Fast pipelines for container builds, tests, and deployments
– Infrastructure teams needing CI/CD without a cloud dependency

What is Woodpecker CI?

Woodpecker CI is a powerful automation tool designed to streamline and simplify the management of enterprise IT environments. By providing a centralized platform for configuration management, logging, and snapshotting, Woodpecker CI enables administrators to maintain better visibility and control over their infrastructure. In this article, we will explore the key features and benefits of Woodpecker CI, as well as provide a comprehensive guide on how to set it up and use it effectively in an enterprise environment.

Main Benefits of Woodpecker CI

So, why should you consider using Woodpecker CI in your enterprise IT setup? Here are some of the main benefits:

  • Improved Configuration Management: Woodpecker CI allows you to manage configurations across multiple environments and systems, ensuring consistency and reducing errors.
  • Enhanced Logging and Auditing: With Woodpecker CI, you can collect and analyze logs from various sources, providing valuable insights into system performance and security.
  • Snapshotting and Restore Points: Woodpecker CI enables you to create snapshots of your systems, allowing for easy recovery in case of failures or errors.

Installation Guide

Prerequisites

Before installing Woodpecker CI, ensure that you have the following prerequisites in place:

  • A compatible operating system (e.g., Linux, Windows)
  • Adequate storage and computing resources
  • A reliable network connection

Step-by-Step Installation

Here’s a step-by-step guide to installing Woodpecker CI:

  1. Download the Woodpecker CI software: You can download the free version of Woodpecker CI from the official website.
  2. Extract the installation files: Extract the downloaded files to a directory on your system.
  3. Run the installation script: Run the installation script, following the prompts to complete the installation.

Technical Specifications

System Requirements

Component Minimum Requirements
CPU 2 GHz dual-core processor
Memory 4 GB RAM
Storage 10 GB free disk space

Supported Platforms

Woodpecker CI supports a range of platforms, including:

  • Linux (Ubuntu, CentOS, etc.)
  • Windows (Server 2012, Server 2016, etc.)

Pros and Cons

Advantages of Woodpecker CI

Here are some of the advantages of using Woodpecker CI:

  • Centralized management: Woodpecker CI provides a single platform for managing configurations, logs, and snapshots.
  • Improved visibility: With Woodpecker CI, you can gain better insights into system performance and security.

Disadvantages of Woodpecker CI

Here are some of the potential drawbacks of using Woodpecker CI:

  • Steep learning curve: Woodpecker CI can be complex to set up and use, especially for those without prior experience.
  • Resource-intensive: Woodpecker CI requires significant computing resources, which can impact system performance.

FAQ

Q: Is Woodpecker CI free?

A: Yes, Woodpecker CI offers a free version, as well as a paid enterprise edition with additional features and support.

Q: How does Woodpecker CI compare to alternatives?

A: Woodpecker CI offers a unique combination of features and benefits, but it’s essential to evaluate it against other options, such as Ansible, Puppet, and Chef, to determine the best fit for your organization.

Other articles

Submit your application