From 7717a2ae12390d3bfa84a3a470f039a74f5cd2cc Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 14 Aug 2023 09:52:25 +0200 Subject: [PATCH] use vendor neutral wording --- .github/settings.yml | 2 +- .woodpecker/docs.yml | 2 +- README.md | 4 ++-- _docs/content/_index.md | 4 ++-- cmd/wp-docker-buildx/main.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index 800d6da..db9e38b 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -1,6 +1,6 @@ repository: name: wp-docker-buildx - description: Woodpecker CI plugin to build multiarch Docker images with buildx + description: Woodpecker CI plugin to build multiarch OCI images with buildx homepage: https://wp-plugin-index.geekdocs.de/plugins/wp-docker-buildx topics: woodpecker, wp-plugin diff --git a/.woodpecker/docs.yml b/.woodpecker/docs.yml index 4f21d59..1f52b81 100644 --- a/.woodpecker/docs.yml +++ b/.woodpecker/docs.yml @@ -45,7 +45,7 @@ steps: target: DOCKER_USER environment: PUSHRM_FILE: README.md - PUSHRM_SHORT: Woodpecker CI plugin to build multiarch Docker images with buildx + PUSHRM_SHORT: Woodpecker CI plugin to build multiarch OCI images with buildx PUSHRM_TARGET: ${CI_REPO} when: - event: [push, manual] diff --git a/README.md b/README.md index 2cc47e3..d5d10f6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # wp-docker-buildx -Woodpecker CI plugin to build multiarch Docker images with buildx +Woodpecker CI plugin to build multiarch OCI images with buildx [![Build Status](https://img.shields.io/wp/build/thegeeklab/wp-docker-buildx?logo=wp&server=https%3A%2F%2Fwp.thegeeklab.de)](https://wp.thegeeklab.de/thegeeklab/wp-docker-buildx) [![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/wp-docker-buildx) @@ -10,7 +10,7 @@ Woodpecker CI plugin to build multiarch Docker images with buildx [![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-docker-buildx) [![License: Apache-2.0](https://img.shields.io/github/license/thegeeklab/wp-docker-buildx)](https://github.com/thegeeklab/wp-docker-buildx/blob/main/LICENSE) -Woodpecker CI plugin to build multiarch Docker images with buildx. This plugin is a fork of [drone-plugins/drone-docker](https://github.com/drone-plugins/drone-docker). You can find the full documentation at [https://wp-plugin-index.geekdocs.de](https://wp-plugin-index.geekdocs.de/plugins/wp-docker-buildx). +Woodpecker CI plugin to build multiarch OCI images with buildx. This plugin is a fork of [drone-plugins/drone-docker](https://github.com/drone-plugins/drone-docker). You can find the full documentation at [https://wp-plugin-index.geekdocs.de](https://wp-plugin-index.geekdocs.de/plugins/wp-docker-buildx). ## Community diff --git a/_docs/content/_index.md b/_docs/content/_index.md index e6a95e3..6a8cd62 100644 --- a/_docs/content/_index.md +++ b/_docs/content/_index.md @@ -9,7 +9,7 @@ title: wp-docker-buildx [![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-docker-buildx) [![License: MIT](https://img.shields.io/github/license/thegeeklab/wp-docker-buildx)](https://github.com/thegeeklab/wp-docker-buildx/blob/main/LICENSE) -Woodpecker CI plugin to build and publish multiarch Docker images with buildx. +Woodpecker CI plugin to build multiarch OCI images with buildx. @@ -99,7 +99,7 @@ Build the binary with the following command: make build ``` -Build the Docker image with the following command: +Build the container image with the following command: ```shell docker build --file Containerfile.multiarch --tag thegeeklab/wp-docker-buildx . diff --git a/cmd/wp-docker-buildx/main.go b/cmd/wp-docker-buildx/main.go index 7fba150..c53c547 100644 --- a/cmd/wp-docker-buildx/main.go +++ b/cmd/wp-docker-buildx/main.go @@ -21,7 +21,7 @@ func main() { settings := &plugin.Settings{} options := wp.Options{ Name: "wp-docker-buildx", - Description: "Build OCI container with DinD and buildx", + Description: "Build multiarch OCI images with buildx", Version: BuildVersion, VersionMetadata: fmt.Sprintf("date=%s", BuildDate), Flags: settingsFlags(settings, wp.FlagsPluginCategory),