Compare commits
No commits in common. "00d93da3984e2b057460b8696a146efdc9ceb4e3" and "248cb76ac6f4d4caec0d57fc7cfaefdffabe98b5" have entirely different histories.
00d93da398
...
248cb76ac6
3 changed files with 0 additions and 59 deletions
|
@ -1,2 +0,0 @@
|
|||
ci/
|
||||
README.md
|
16
README.md
16
README.md
|
@ -1,16 +0,0 @@
|
|||
# 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
|
||||
|
||||
- username: Optional. The username used to log into the registry.
|
||||
- password: Optional. The password used to log into the registry.
|
||||
|
||||
## Example
|
||||
|
||||
To view a simple invocation just look at [pipeline.yml](/ci/pipeline.yml).
|
|
@ -1,41 +0,0 @@
|
|||
---
|
||||
resources:
|
||||
- name: source
|
||||
type: git
|
||||
source:
|
||||
uri: https://gitea.redxef.at/redxef/concourse-buildkit
|
||||
branch: master
|
||||
|
||||
jobs:
|
||||
- name: build-push
|
||||
plan:
|
||||
- get: source
|
||||
trigger: true
|
||||
- task: build
|
||||
privileged: true
|
||||
config:
|
||||
platform: linux
|
||||
image_resource:
|
||||
type: registry-image
|
||||
source:
|
||||
repository: redxef/concourse-buildkit
|
||||
inputs:
|
||||
- name: source
|
||||
path: .
|
||||
params:
|
||||
username: ((docker.username))
|
||||
password: ((docker.password))
|
||||
run:
|
||||
path: entrypoint.sh
|
||||
args:
|
||||
- build
|
||||
- --frontend
|
||||
- dockerfile.v0
|
||||
- --local
|
||||
- context=.
|
||||
- --local
|
||||
- dockerfile=.
|
||||
- --opt
|
||||
- platform=aarch64,arm,ppc64le,s390x,x86_64
|
||||
- --output
|
||||
- type=image,name=docker.io/redxef/concourse-buildkit,push=true
|
Reference in a new issue