No description
  • Dockerfile 100%
Find a file
Felipe M. c96296cb69
All checks were successful
ci/woodpecker/tag/ci-release Pipeline was successful
Add privileged flag to buildx step
Required for the docker-container buildx driver to boot buildkit
inside the CI runner.
2026-02-18 08:48:24 +01:00
.woodpecker Add privileged flag to buildx step 2026-02-18 08:48:24 +01:00
ci-release Add ci-release image 2026-02-18 08:40:58 +01:00
.gitignore Add ci-release image 2026-02-18 08:40:58 +01:00
README.md Add ci-release image 2026-02-18 08:40:58 +01:00

CI Images

Docker images used in Woodpecker CI pipelines.

Available images

Image Description
ci-release All-in-one image for building and releasing Go projects with GoReleaser, Bun, Docker and more.

How it works

Each directory contains a Dockerfile and a README.md describing the image.

Images are built and pushed automatically to the Forgejo container registry on every tag via Woodpecker CI. Tags follow the format <image-name>/<version> (e.g. ci-release/1.0.0).

Using the images

steps:
  - name: release
    image: git.nakama.town/fmartingr/ci-images/ci-release:latest
    commands:
      - goreleaser release --clean

Building locally

cd ci-release
docker build -t ci-release .