docker-with-buildx/.drone.yml

36 lines
922 B
YAML
Raw Normal View History

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:14:49 +03:00
DOCKER_HOST: tcp://docker:2375
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:14:49 +03:00
- docker build --no-cache -t "$DOCKER_IMAGE_NAME:latest" .
- docker push "$DOCKER_IMAGE_NAME:latest"
2022-12-18 01:14:49 +03:00
# - docker push "$DOCKER_IMAGE_NAME:$DRONE_TAG"
trigger:
2022-12-18 01:14:49 +03:00
branch:
- main
# ref:
# - refs/tags/v.*.*.*
2022-12-17 20:44:42 +03:00
2022-12-18 01:01:53 +03:00
services:
- name: docker
2022-12-18 01:14:49 +03:00
image: docker:20.10.22-dind-alpine3.17
privileged: true