From a38021f93283261e7a5bb051d3963210dd698dbc Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 29 May 2022 21:41:26 +0000 Subject: [PATCH] commit 1b0ed2cbcff1b76aee9acf7c9c4289a414f9dc64 Author: Robert Kaussow Date: Sun May 29 23:37:56 2022 +0200 docs: refactor plugin properties --- _index.md => content/_index.md | 133 +++++----------------- data/data.yaml | 200 +++++++++++++++++++++++++++++++++ 2 files changed, 225 insertions(+), 108 deletions(-) rename _index.md => content/_index.md (50%) create mode 100644 data/data.yaml diff --git a/_index.md b/content/_index.md similarity index 50% rename from _index.md rename to content/_index.md index fb1db19..f306b1b 100644 --- a/_index.md +++ b/content/_index.md @@ -21,6 +21,30 @@ Drone plugin to build and publish multiarch Docker images. The tags follow the major version of Docker, e.g. `19`, the minor and patch part reflects the "version" of the plugin. A full example would be `19.6.5`. Minor versions may introduce breaking changes, while patch versions may be considered non-breaking. +## Usage + +```YAML +kind: pipeline +name: default + +steps: + - name: docker + image: thegeeklab/drone-docker + settings: + username: octocat + password: secure + repo: octocat/example + tags: latest +``` + +### Parameters + + + +{{< propertylist name=drone-docker.data >}} + + + ## Build Build the binary with the following command: @@ -40,7 +64,7 @@ Build the Docker image with the following command: docker build --file docker/Dockerfile.amd64 --tag thegeeklab/drone-docker . ``` -## Usage +## Test {{< hint type=important >}} Be aware that the this plugin requires privileged capabilities, otherwise the integrated Docker daemon is not able to start. @@ -56,110 +80,3 @@ docker run --rm \ --privileged \ thegeeklab/drone-docker --dry-run ``` - -### Parameters - -dry_run -: disables docker push - -drone_remote_url -: sets the git remote url - -mirror -: sets a registry mirror to pull images - -storage_driver -: sets the docker daemon storage driver - -storage_path -: sets the docker daemon storage path (default `/var/lib/docker`) - -bip -: allows the docker daemon to bride ip address - -mtu -: sets docker daemon custom mtu setting - -custom_dns -: sets custom docker daemon dns server - -custom_dns_search -: sets custom docker daemon dns search domain - -insecure -: allows the docker daemon to use insecure registries - -ipv6 -: enables docker daemon ipv6 support - -experimental -: enables docker daemon experimental mode - -debug "docker_launch_debug -: enables verbose debug mode for the docker daemon - -daemon_off -: disables the startup of the docker daemon - -dockerfile -: sets dockerfile to use for the image build (default `./Dockerfile`) - -context -: sets the path of the build context to use (default `./`) - -tags -: sets repository tags to use for the image; tags can also be loaded from a `.tags` file (default `latest`) - -auto_tag -: generates tag names automatically based on git branch and git tag - -auto_tag_suffix -: generates tag names with the given suffix - -build_args -: sets custom build arguments for the build - -build_args_from_env -: forwards environment variables as custom arguments to the build - -quiet -: enables suppression of the build output - -target -: sets the build target to use - -cache_from -: sets images to consider as cache sources - -pull_image -: enforces to pull base image at build time (default `true`) - -compress -: enables compression og the build context using gzip - -repo -: sets repository name for the image - -registry -: sets docker registry to authenticate with (default `https://index.docker.io/v1/`) - -username -: sets username to authenticates with - -password -: sets password to authenticates with - -email -: sets email address to authenticates with - -config -: sets content of the docker daemon json config - -purge -: enables cleanup of the docker environment at the end of a build (default `true`) - -no_cache -: disables the usage of cached intermediate containers - -add_host -: sets additional host:ip mapping diff --git a/data/data.yaml b/data/data.yaml new file mode 100644 index 0000000..b8a3d3f --- /dev/null +++ b/data/data.yaml @@ -0,0 +1,200 @@ +--- +parameters: + dry_run: + description: Disable docker push. + type: bool + required: false + + drone_remote_url: + description: The git remote url. + type: string + required: false + + mirror: + description: Use a registry mirror to pull images. + type: string + required: false + + storage_driver: + description: The docker daemon storage driver. + type: string + required: false + + storage_path: + description: The docker daemon storage path. + defaultValue: /var/lib/docker + type: string + required: false + + bip: + description: Allows the docker daemon to bride IP address. + type: string + required: false + + mtu: + description: A docker daemon custom MTU. + type: string + required: false + + custom_dns: + description: Custom docker daemon DNS server. + type: list + required: false + + custom_dns_search: + description: Custom docker daemon DNS search domain. + type: list + required: false + + insecure: + description: Enable the usage of insecure registries. + type: bool + defaultValue: false + required: false + + ipv6: + description: Enable docker daemon IPv6 support. + type: bool + defaultValue: false + required: false + + experimental: + description: Enable docker daemon experimental mode. + type: bool + defaultValue: false + required: false + + daemon_debug: + description: Enable verbose debug mode for the docker daemon. + type: string + defaultValue: false + required: false + + daemon_off: + description: Disable the startup of the docker daemon. + type: string + defaultValue: false + required: false + + dockerfile: + description: Set dockerfile to use for the image build. + defaultValue: Dockerfile + type: string + required: false + + context: + description: Set the path of the build context to use. + defaultValue: . + type: string + required: false + + tags: + description: Set repository tags to use for the image. Tags can also be loaded from a `.tags` file. + defaultValue: latest + type: list + required: false + + auto_tag: + description: > + Generate tag names automatically based on git branch and git tag. When this feature is enabled and the event type is `tag`, + the plugin will automatically tag the image using the standard semVer convention. For example: + + - `1.0.0` produces docker tags `1`, `1.0`, `1.0.0` + - `1.0.0-rc.1` produces docker tags `1.0.0-rc.1` + + When the event type is `push` and the target branch is your default branch, the plugin will automatically tag the image + as `latest`. All other event types and branches are ignored. + defaultValue: false + type: bool + required: false + + auto_tag_suffix: + description: Generate tag names with the given suffix. + type: string + required: false + + build_args: + description: Ccustom build arguments to pass to the build. + type: list + required: false + + build_args_from_env: + description: Forward environment variables as custom arguments to the build. + type: list + required: false + + quiet: + description: Enable suppression of the build output. + defaultValue: false + type: bool + required: false + + target: + description: The docker build target. + type: string + required: false + + cache_from: + description: Images to consider as cache sources. + type: list + required: false + + pull_image: + description: Enforce to pull the base image at build time. + defaultValue: true + type: bool + required: false + + compress: + description: Enable compression og the build context using gzip. + defaultValue: false + type: bool + required: false + + repo: + description: Repository name for the image. + type: string + required: false + + registry: + description: Docker registry to upload images. + defaultValue: https://index.docker.io/v1/ + type: string + required: false + + username: + description: Username for authentication with the registry. + type: string + required: false + + password: + description: Password for authentication with the registry. + type: string + required: false + + email: + description: E-Mail address for authentication with the registry. + type: string + required: false + + config: + description: Content of the docker daemon json config. + type: string + required: false + + purge: + description: Enable cleanup of the docker environment at the end of a build. + defaultValue: true + type: bool + required: false + + no_cache: + description: Disable the usage of cached intermediate containers. + defaultValue: false + type: string + required: false + + add_host: + description: Additional `host:ip` mapping. + type: list + required: false