Skip to main content
Version: 2.4.x

Deployment

A Woodpecker deployment consists of two parts:

  • A server which is the heart of Woodpecker and ships the web interface.
  • Next to one server, you can deploy any number of agents which will run the pipelines.

Each agent is able to process one pipeline step by default. If you have four agents installed and connected to the Woodpecker server, your system will process four workflows in parallel.

tip

You can add more agents to increase the number of parallel workflows or set the agent's WOODPECKER_MAX_WORKFLOWS=1 environment variable to increase the number of parallel workflows for that agent.

Which version of Woodpecker should I use?โ€‹

Woodpecker is having two different kinds of releases: stable and next.

To find out more about the differences between the two releases, please read the FAQ.

Stable releasesโ€‹

We release a new version every four weeks and will release the current state of the main branch. If there are security fixes or critical bug fixes, we'll release them directly. There are no backports or similar.

Versioningโ€‹

We use Semantic Versioning to be able, to communicate when admins have to do manual migration steps and when they can just bump versions up.

Breaking changesโ€‹

As of semver guidelines, breaking changes will be released as a major version. We will hold back breaking changes to not release many majors each containing just a few breaking changes. Prior to the release of a major version, a release candidate (RC) will be published to allow easy testing, the actual release will be about a week later.

Hardware Requirementsโ€‹

Below are minimal resources requirements for Woodpecker components itself:

ComponentMemoryCPU
Server200 MB1
Agent32 MB1

Note, that those values do not include the operating system or workload (pipelines execution) resources consumption.

In addition you need at least some kind of database which requires additional resources depending on the selected database system.

Installationโ€‹

You can install Woodpecker on multiple ways:

Authenticationโ€‹

Authentication is done using OAuth and is delegated to your forge which is configured using environment variables.

See the complete reference for all supported forges here.

Databaseโ€‹

By default Woodpecker uses a SQLite database which requires zero installation or configuration. See the database settings page to further configure it or use MySQL or Postgres.

SSLโ€‹

Woodpecker supports SSL configuration by using Let's encrypt or by using own certificates. See the SSL guide. You can also put it behind a reverse proxy

Metricsโ€‹

A Prometheus endpoint is exposed.

Behind a proxyโ€‹

See the proxy guide if you want to see a setup behind Apache, Nginx, Caddy or ngrok.

In the case you need to use Woodpecker with a URL path prefix (like: https://example.org/woodpecker/), add the root path to WOODPECKER_HOST.

Third-party installation methodsโ€‹

info

These installation methods are not officially supported. If you experience issues with them, please open issues in the specific repositories.