concourse-buildkit/README.md

20 lines
718 B
Markdown
Raw Normal View History

2022-03-09 14:23:20 +01:00
# concourse-buildkit
A docker image to build multiarch images on [concourse](https://concourse-ci.org)
since buildx is flakey for me.
Currently only the docker registry is supported.
## parameters
- dest: Required. The output path for the oci image.
2022-03-09 16:37:41 +01:00
- platform: Optional. A comma seperated list of target platforms, default: current platform
- context: The context with which to build.
- manual: Optional. Don't use params and instead supply all arguments via the command line, default: `false`
2022-03-09 14:23:20 +01:00
- username: Optional. The username used to log into the registry.
- password: Optional. The password used to log into the registry.
2022-03-09 16:40:28 +01:00
## Example
To view a simple invocation just look at [pipeline.yml](ci/pipeline.yml).