2023-02-19 23:53:57 +03:00
|
|
|
---
|
2022-12-17 20:28:41 +03:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: docker-with-buildx
|
|
|
|
|
|
|
|
steps:
|
2024-07-13 10:29:10 +03:00
|
|
|
- name: Release For Tag
|
|
|
|
# https://hub.docker.com/r/library/docker
|
2024-10-11 10:25:13 +03:00
|
|
|
image: hub.docker.struchkov.dev/docker:27.3.1-dind-alpine3.20
|
2022-12-17 20:28:41 +03:00
|
|
|
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
|
2022-12-18 01:19:11 +03:00
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
path: /var/run
|
2022-12-17 20:28:41 +03:00
|
|
|
commands:
|
2022-12-18 01:01:53 +03:00
|
|
|
- sleep 15
|
2023-12-02 20:56:21 +03:00
|
|
|
- echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin
|
2023-12-02 20:58:11 +03:00
|
|
|
- echo "$DOCKER_REGISTRY_TOKEN" | docker login hub.docker.struchkov.dev --username $DOCKER_REGISTRY_USER --password-stdin
|
2023-12-02 21:20:37 +03:00
|
|
|
- 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"
|
2022-12-17 20:28:41 +03:00
|
|
|
|
|
|
|
trigger:
|
2022-12-18 01:20:41 +03:00
|
|
|
ref:
|
|
|
|
- refs/tags/v.*.*.*
|
2022-12-17 20:44:42 +03:00
|
|
|
|
2022-12-18 01:01:53 +03:00
|
|
|
services:
|
2022-12-18 01:19:11 +03:00
|
|
|
- name: docker
|
2024-07-13 10:29:10 +03:00
|
|
|
# https://hub.docker.com/r/library/docker
|
2024-10-11 10:25:13 +03:00
|
|
|
image: hub.docker.struchkov.dev/docker:27.3.1-dind-alpine3.20
|
2022-12-18 01:19:11 +03:00
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
path: /var/run
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
2023-02-19 23:53:57 +03:00
|
|
|
temp: {}
|
2023-12-02 20:50:31 +03:00
|
|
|
|
|
|
|
image_pull_secrets:
|
|
|
|
- DOCKER_AUTH
|
2024-07-13 10:29:10 +03:00
|
|
|
|
|
|
|
# drone sign --save DockerFiles/docker-with-buildx
|
2023-02-19 23:53:57 +03:00
|
|
|
---
|
|
|
|
kind: signature
|
2024-10-11 10:25:13 +03:00
|
|
|
hmac: 51b488a1807188012573693778f74f716c383b739d26b7b1b322b7b976ac28b6
|
2023-02-19 23:53:57 +03:00
|
|
|
|
|
|
|
...
|