docker-with-buildx/.drone.yml

54 lines
1.5 KiB
YAML
Raw Normal View History

2023-02-19 23:53:57 +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
image: hub.docker.struchkov.dev/docker:27.0.3-dind-alpine3.20
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
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"
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
image: hub.docker.struchkov.dev/docker:27.0.3-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-07-13 10:29:10 +03:00
hmac: 2f80bb16d68c9ff3cbbf0ee23fc3545c440665248d840f6b2e2e82a97b65ade8
2023-02-19 23:53:57 +03:00
...