mirror of
https://github.com/thegeeklab/wp-docker-buildx.git
synced 2024-11-09 17:20:39 +00:00
docs: fix properties file syntax due to changes in the theme (#154)
This commit is contained in:
parent
d67ab72c0a
commit
f7063369b6
@ -46,7 +46,7 @@ steps:
|
|||||||
|
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
<!-- spellchecker-disable -->
|
<!-- spellchecker-disable -->
|
||||||
{{< propertylist name=drone-docker-buildx.data >}}
|
{{< propertylist name=drone-docker-buildx.data sort=name >}}
|
||||||
<!-- spellchecker-enable -->
|
<!-- spellchecker-enable -->
|
||||||
<!-- prettier-ignore-end -->
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
|
@ -1,106 +1,106 @@
|
|||||||
---
|
---
|
||||||
properties:
|
properties:
|
||||||
dry_run:
|
- name: dry_run
|
||||||
description: Disable docker push.
|
description: Disable docker push.
|
||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
mirror:
|
- name: mirror
|
||||||
description: Use a registry mirror to pull images.
|
description: Use a registry mirror to pull images.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
storage_driver:
|
- name: storage_driver
|
||||||
description: The docker daemon storage driver.
|
description: The docker daemon storage driver.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
storage_path:
|
- name: storage_path
|
||||||
description: The docker daemon storage path.
|
description: The docker daemon storage path.
|
||||||
defaultValue: /var/lib/docker
|
defaultValue: /var/lib/docker
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
bip:
|
- name: bip
|
||||||
description: Allows the docker daemon to bride IP address.
|
description: Allows the docker daemon to bride IP address.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
mtu:
|
- name: mtu
|
||||||
description: A docker daemon custom MTU.
|
description: A docker daemon custom MTU.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
custom_dns:
|
- name: custom_dns
|
||||||
description: Custom docker daemon DNS server.
|
description: Custom docker daemon DNS server.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
custom_dns_search:
|
- name: custom_dns_search
|
||||||
description: Custom docker daemon DNS search domain.
|
description: Custom docker daemon DNS search domain.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
insecure:
|
- name: insecure
|
||||||
description: Enable the usage of insecure registries.
|
description: Enable the usage of insecure registries.
|
||||||
type: bool
|
type: bool
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
ipv6:
|
- name: ipv6
|
||||||
description: Enable docker daemon IPv6 support.
|
description: Enable docker daemon IPv6 support.
|
||||||
type: bool
|
type: bool
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
experimental:
|
- name: experimental
|
||||||
description: Enable docker daemon experimental mode.
|
description: Enable docker daemon experimental mode.
|
||||||
type: bool
|
type: bool
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
debug:
|
- name: debug
|
||||||
description: Enable verbose debug mode for the docker daemon.
|
description: Enable verbose debug mode for the docker daemon.
|
||||||
type: string
|
type: string
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
daemon_off:
|
- name: daemon_off
|
||||||
description: Disable the startup of the docker daemon.
|
description: Disable the startup of the docker daemon.
|
||||||
type: string
|
type: string
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
buildkit_config:
|
- name: buildkit_config
|
||||||
description: Content of the docker buildkit json config.
|
description: Content of the docker buildkit json config.
|
||||||
type: string
|
type: string
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
dockerfile:
|
- name: dockerfile
|
||||||
description: Set dockerfile to use for the image build.
|
description: Set dockerfile to use for the image build.
|
||||||
defaultValue: Dockerfile
|
defaultValue: Dockerfile
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
context:
|
- name: context
|
||||||
description: Set the path of the build context to use.
|
description: Set the path of the build context to use.
|
||||||
defaultValue: .
|
defaultValue: .
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
named_context:
|
- name: named_context
|
||||||
description: Set additional named [build contexts](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-context) (e.g., name=path).
|
description: Set additional named [build contexts](https://docs.docker.com/engine/reference/commandline/buildx_build/#build-context) (e.g., name=path).
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
tags:
|
- name: tags
|
||||||
description: Set repository tags to use for the image. Tags can also be loaded from a `.tags` file.
|
description: Set repository tags to use for the image. Tags can also be loaded from a `.tags` file.
|
||||||
defaultValue: latest
|
defaultValue: latest
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
auto_tag:
|
- name: auto_tag
|
||||||
description: |
|
description: |
|
||||||
Generate tag names automatically based on git branch and git tag. When this feature is enabled and the event type is `tag`,
|
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:
|
the plugin will automatically tag the image using the standard semVer convention. For example:
|
||||||
@ -112,12 +112,12 @@ properties:
|
|||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
auto_tag_suffix:
|
- name: auto_tag_suffix
|
||||||
description: Generate tag names with the given suffix.
|
description: Generate tag names with the given suffix.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
extra_tags:
|
- name: extra_tags
|
||||||
description: |
|
description: |
|
||||||
Set additional tags to be used for the image. Additional tags can also be loaded from an `.extratags` file. This function can be used
|
Set additional tags to be used for the image. Additional tags can also be loaded from an `.extratags` file. This function can be used
|
||||||
to push images to multiple registries at once. Therefore, it is necessary to use the `config` flag to provide a configuration file
|
to push images to multiple registries at once. Therefore, it is necessary to use the `config` flag to provide a configuration file
|
||||||
@ -125,28 +125,28 @@ properties:
|
|||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
build_args:
|
- name: build_args
|
||||||
description: Ccustom build arguments to pass to the build.
|
description: Ccustom build arguments to pass to the build.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
build_args_from_env:
|
- name: build_args_from_env
|
||||||
description: Forward environment variables as custom arguments to the build.
|
description: Forward environment variables as custom arguments to the build.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
quiet:
|
- name: quiet
|
||||||
description: Enable suppression of the build output.
|
description: Enable suppression of the build output.
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
target:
|
- name: target
|
||||||
description: The docker build target.
|
description: The docker build target.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
cache_from:
|
- name: cache_from
|
||||||
description: |
|
description: |
|
||||||
Images to consider as [cache sources](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-from). To properly work,
|
Images to consider as [cache sources](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-from). To properly work,
|
||||||
commas used in the cache source entries need to be escaped:
|
commas used in the cache source entries need to be escaped:
|
||||||
@ -164,25 +164,25 @@ properties:
|
|||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
cache_to:
|
- name: cache_to
|
||||||
description: |
|
description: |
|
||||||
[Cache destination](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-to) for the build cache.
|
[Cache destination](https://docs.docker.com/engine/reference/commandline/buildx_build/#cache-to) for the build cache.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
pull_image:
|
- name: pull_image
|
||||||
description: Enforce to pull the base image at build time.
|
description: Enforce to pull the base image at build time.
|
||||||
defaultValue: true
|
defaultValue: true
|
||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
compress:
|
- name: compress
|
||||||
description: Enable compression of the build context using gzip.
|
description: Enable compression of the build context using gzip.
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
output:
|
- name: output
|
||||||
description: |
|
description: |
|
||||||
[Export action](https://docs.docker.com/engine/reference/commandline/buildx_build/#output) for the build result
|
[Export action](https://docs.docker.com/engine/reference/commandline/buildx_build/#output) for the build result
|
||||||
(format: `path` or `type=TYPE[,KEY=VALUE]`).
|
(format: `path` or `type=TYPE[,KEY=VALUE]`).
|
||||||
@ -190,54 +190,54 @@ properties:
|
|||||||
type: bool
|
type: bool
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
repo:
|
- name: repo
|
||||||
description: Repository name for the image.
|
description: Repository name for the image.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
registry:
|
- name: registry
|
||||||
description: Docker registry to upload images.
|
description: Docker registry to upload images.
|
||||||
defaultValue: https://index.docker.io/v1/
|
defaultValue: https://index.docker.io/v1/
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
username:
|
- name: username
|
||||||
description: Username for authentication with the registry.
|
description: Username for authentication with the registry.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
password:
|
- name: password
|
||||||
description: Password for authentication with the registry.
|
description: Password for authentication with the registry.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
email:
|
- name: email
|
||||||
description: E-Mail address for authentication with the registry.
|
description: E-Mail address for authentication with the registry.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
config:
|
- name: config
|
||||||
description: Content of the docker daemon json config.
|
description: Content of the docker daemon json config.
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
no_cache:
|
- name: no_cache
|
||||||
description: Disable the usage of cached intermediate containers.
|
description: Disable the usage of cached intermediate containers.
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
type: string
|
type: string
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
add_host:
|
- name: add_host
|
||||||
description: Additional `host:ip` mapping.
|
description: Additional `host:ip` mapping.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
platforms:
|
- name: platforms
|
||||||
description: Target platforms for build.
|
description: Target platforms for build.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
labels:
|
- name: labels
|
||||||
description: Labels to add to the image.
|
description: Labels to add to the image.
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
Loading…
Reference in New Issue
Block a user