Compare commits

...

5 Commits

Author SHA1 Message Date
135c805a66 Update docker Docker tag to v28
Some checks failed
continuous-integration/drone/push Build is failing
2025-03-25 03:00:27 +00:00
e8001b43d4 update drone
Some checks failed
continuous-integration/drone/push Build is failing
2025-03-25 03:57:43 +01:00
13fc4f61cc try drone update
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2025-03-25 03:55:47 +01:00
af7484183c fix arch
Some checks failed
continuous-integration/drone/push Build is failing
2025-03-25 03:20:50 +01:00
8a1e4c9092 fix drone
Some checks reported errors
continuous-integration/drone/push Build was killed
2025-03-25 03:19:53 +01:00

View File

@@ -1,16 +1,27 @@
kind: pipeline
name: default
type: docker
name: build
platform:
os: linux
arch: arm64
trigger:
event:
- push
steps:
- name: docker-login
image: docker:20.10.16-dind
services:
- name: docker
image: docker:28.0.2-dind
privileged: true
environment:
DOCKER_TLS_CERTDIR: ""
steps:
- name: docker-login
image: docker:28.0.2
environment:
DOCKER_BUILDKIT: 1
DOCKER_HOST: tcp://docker:2375
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
@@ -19,26 +30,26 @@ steps:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- name: create-builder
image: docker:20.10.16-dind
privileged: true
image: docker:28.0.2
environment:
DOCKER_BUILDKIT: 1
DOCKER_HOST: tcp://docker:2375
commands:
- docker buildx create --use --name multi-builder || docker buildx use multi-builder
- name: bootstrap
image: docker:20.10.16-dind
privileged: true
image: docker:28.0.2
environment:
DOCKER_BUILDKIT: 1
DOCKER_HOST: tcp://docker:2375
commands:
- docker buildx inspect --bootstrap
- name: build-push
image: docker:20.10.16-dind
privileged: true
image: docker:28.0.2
environment:
DOCKER_BUILDKIT: 1
DOCKER_HOST: tcp://docker:2375
DOCKER_USERNAME:
from_secret: docker_username
commands: