docker-with-buildx/.drone.yml
Struchkov Mark 28d9c20f46
All checks were successful
continuous-integration/drone/tag Build is passing
fix cicd
2023-12-02 20:58:11 +03:00

51 lines
1.4 KiB
YAML

---
kind: pipeline
type: docker
name: docker-with-buildx
steps:
- name: docker build an publish
image: hub.docker.struchkov.dev/docker:24.0.7-dind-alpine3.18
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_IMAGE_NAME:latest" -t "docker.struchkov.dev/$DOCKER_IMAGE_NAME:$DRONE_TAG" .
- docker push "docker.struchkov.dev/$DOCKER_IMAGE_NAME:latest"
- docker push "docker.struchkov.dev/$DOCKER_IMAGE_NAME:$DRONE_TAG"
trigger:
ref:
- refs/tags/v.*.*.*
services:
- name: docker
image: hub.docker.struchkov.dev/docker:24.0.7-dind-alpine3.18
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
image_pull_secrets:
- DOCKER_AUTH
---
kind: signature
hmac: bc1aa69377273a66870bb987f6b39bdd59d7794b9a76e132b72e19124a056e04
...