Files
docker-with-buildx/.drone.yml
Struchkov Mark 9f472aad79
All checks were successful
continuous-integration/drone/tag Build is passing
BUILDX_VERSION=0.31.0 and DOCKER_VERSION=29.2.0-dind-alpine3.23
2026-01-23 20:47:13 +03:00

54 lines
1.5 KiB
YAML

---
kind: pipeline
type: docker
name: docker-with-buildx
steps:
- name: Release For Tag
# https://hub.docker.com/r/library/docker
image: hub.docker.struchkov.dev/docker:29.1.5-dind-alpine3.23
environment:
DOCKER_REGISTRY_TOKEN:
from_secret: DOCKER_REGISTRY_TOKEN
DOCKER_IMAGE_NAME:
from_secret: DOCKER_IMAGE_NAME
DOCKER_REGISTRY_USER:
from_secret: DOCKER_REGISTRY_USER
volumes:
- name: dockersock
path: /var/run
commands:
- sleep 15
- echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin
- echo "$DOCKER_REGISTRY_TOKEN" | docker login hub.docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin
- docker build --no-cache -t "docker.struchkov.dev/docker-buildx:latest" -t "docker.struchkov.dev/docker-buildx:$DRONE_TAG" .
- docker push "docker.struchkov.dev/docker-buildx:latest"
- docker push "docker.struchkov.dev/docker-buildx:$DRONE_TAG"
trigger:
ref:
- refs/tags/v.*.*.*
services:
- name: docker
# https://hub.docker.com/r/library/docker
image: hub.docker.struchkov.dev/docker:29.1.5-dind-alpine3.23
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
image_pull_secrets:
- DOCKER_AUTH
# drone sign --save DockerFiles/docker-with-buildx
---
kind: signature
hmac: af4f9bda7ca3c0dddfd4d8e5b4b65ed265c6b236122186e947f0e465660b0501
...