Docker daemon and cli for usage in WoodpeckerCI. https://hub.docker.com/r/kokuwaio/dockerd
Find a file
Renovate 8c017a65bb
Some checks failed
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/pr/test/2 unknown status
ci/woodpecker/pr/build Pipeline failed
ci/woodpecker/pr/test/1 unknown status
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test/1 Pipeline failed
ci/woodpecker/push/test/2 Pipeline failed
chore(deps): update docker.io/library/debian docker tag from 12.9-slim to 12.11-slim
2025-06-19 10:46:49 +00:00
.github/workflows 1 2025-06-18 22:38:57 +02:00
.woodpecker 11 2025-06-19 12:22:43 +02:00
.justfile 1 2025-06-18 22:38:57 +02:00
.markdownlint.yaml Initial draft of plugin. 2025-06-18 22:22:07 +02:00
.yamllint.yaml 1 2025-06-18 22:38:57 +02:00
Dockerfile chore(deps): update docker.io/library/debian docker tag from 12.9-slim to 12.11-slim 2025-06-19 10:46:49 +00:00
Dockerfile.dockerignore Initial draft of plugin. 2025-06-18 22:22:07 +02:00
entrypoint.sh 1 2025-06-18 22:38:57 +02:00
LICENSE 1 2025-06-18 22:38:57 +02:00
README.md 1 2025-06-18 22:38:57 +02:00
renovate.json 1 2025-06-18 22:38:57 +02:00

Docker Daemon WoodpeckerCI Plugin

pulls size dockerfile license issues

A Woodpecker CI prepared docker daemon. Also usable with Gitlab, Github or locally, see examples for usage.

Features

  • set full description in repository from local file
  • set short description in repository from settings
  • set categories for repository

Example

Woodpecker:

steps:
  dockerhub:
    image: kokuwaio/dockerhub-metadata
    depends_on: []
    settings:
      repository: kokuwaio/example-image
      description-short: This image does that!
      categories: [developer-tools, integration-and-delivery]
      username: {from_secret: DOCKERHUB_USERNAME}
      password: {from_secret: DOCKERHUB_PASSWORD}
    when:
      event: push
      branch: main
      path: README.md

Gitlab:

dockerhub:
  stage: deploy
  needs: []
  image: kokuwaio/hadolint
  variables:
    PLUGIN_REPOSITORY: kokuwaio/example-image
    PLUGIN_DESCRIPTION_SHORT: This image does that!
    PLUGIN_CATEGORIES: developer-tools,integration-and-delivery
  rules:
    - if: $CI_PIPELINE_SOURCE == "push"
      changes: [README.md]

Settings

Settings Name Environment Default Description
repository PLUGIN_DOCKER_PORT none Repository to update with metadata, e.g. kokuwaio/example
description-short PLUGIN_DESCRIPTION_SHORT none Short description for repository.
description-file PLUGIN_DESCRIPTION_FILE README.md File to read full description from
categories PLUGIN_CATEGORIES [] List of categories to set (maximum 3)
username PLUGIN_USERNAME none Username for Dockerhub login
password PLUGIN_PASSWORD none Password for Dockerhub login, PAT is not supported!