docker-with-buildx/.drone.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

2023-02-19 23:53:57 +03:00
---
kind: pipeline
type: docker
name: docker-with-buildx
steps:
- name: docker build an publish
2022-12-18 01:14:49 +03:00
image: docker:20.10.22-dind-alpine3.17
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
- echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.io --username $DOCKER_REGISTRY_USER --password-stdin
2022-12-18 01:20:41 +03:00
- docker build --no-cache -t "$DOCKER_IMAGE_NAME:latest" -t "$DOCKER_IMAGE_NAME:$DRONE_TAG" .
- docker push "$DOCKER_IMAGE_NAME:latest"
2022-12-18 01:20:41 +03:00
- docker push "$DOCKER_IMAGE_NAME:$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
image: docker:20.10.22-dind-alpine3.17
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
2023-02-19 23:53:57 +03:00
temp: {}
---
kind: signature
hmac: 8717317b5c00e17259b1386f95862b486027882b40814ab20145c25c9e65984b
...