docker-with-buildx/.drone.yml

41 lines
965 B
YAML
Raw Normal View History

kind: pipeline
type: docker
name: docker-with-buildx
steps:
- name: docker build an publish
2022-12-17 20:45:43 +03:00
image: docker:dind
2022-12-18 01:00:11 +03:00
privileged: true
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 00:48:39 +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:01:53 +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:01:53 +03:00
- docker push "$DOCKER_IMAGE_NAME:$DRONE_TAG"
trigger:
2022-12-18 01:01:53 +03:00
ref:
- refs/tags/v.*.*.*
2022-12-17 20:44:42 +03:00
2022-12-18 01:01:53 +03:00
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
2022-12-18 00:48:39 +03:00
2022-12-18 01:01:53 +03:00
volumes:
- name: dockersock
temp: {}