transmission-telegram/.drone.yml
Struchkov Mark 2af81315bc
Some checks failed
continuous-integration/drone/push Build is failing
drone
2024-01-28 10:50:13 +03:00

48 lines
1.2 KiB
YAML

---
kind: pipeline
type: docker
name: build-and-push-develop
steps:
- name: docker build an publish
image: docker.struchkov.dev/docker-buildx:latest
environment:
DOCKER_REGISTRY_TOKEN:
from_secret: DOCKER_REGISTRY_TOKEN
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 buildx create --use
- docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t "docker.struchkov.dev/transmission-telegram:develop" .
trigger:
branch:
- drone
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: 325e607497599b23d1c43d8668ede8f1cd0d5e5cb482aa709cf3164960c74614
...