samba/.drone.yml

95 lines
2.5 KiB
YAML
Raw Normal View History

2023-03-05 12:00:10 +03:00
---
kind: pipeline
type: docker
name: build-and-push-develop
2023-03-05 12:00:10 +03:00
steps:
- name: docker build an publish
2024-07-13 10:36:13 +03:00
# https://hub.docker.com/r/library/docker
image: hub.docker.struchkov.dev/docker:27.0.3-dind-alpine3.20
2023-03-05 12:00:10 +03:00
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
2023-12-02 21:27:48 +03:00
- 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
2023-03-05 12:00:10 +03:00
- docker buildx create --use
2023-12-02 21:32:50 +03:00
- docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t "docker.struchkov.dev/samba:develop" .
2023-03-05 12:00:10 +03:00
trigger:
branch:
- develop
services:
- name: docker
2024-07-13 10:36:13 +03:00
# https://hub.docker.com/r/library/docker
image: hub.docker.struchkov.dev/docker:27.0.3-dind-alpine3.20
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
2023-12-02 21:27:48 +03:00
image_pull_secrets:
- DOCKER_AUTH
---
kind: pipeline
type: docker
name: build-and-push-release
steps:
- name: docker build an publish
2023-12-02 21:27:48 +03:00
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
2023-12-02 21:27:48 +03:00
- 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
2023-12-02 21:27:48 +03:00
- docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t "docker.struchkov.dev/samba:latest" -t "docker.struchkov.dev/samba:$DRONE_TAG" .
trigger:
ref:
- refs/tags/*
2023-03-05 12:00:10 +03:00
services:
- name: docker
2024-07-13 10:36:13 +03:00
# https://hub.docker.com/r/library/docker
image: hub.docker.struchkov.dev/docker:27.0.3-dind-alpine3.20
2023-03-05 12:00:10 +03:00
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
2023-12-02 21:27:48 +03:00
image_pull_secrets:
- DOCKER_AUTH
2024-07-13 10:36:13 +03:00
# drone sign --save DockerFiles/samba
2023-03-05 12:00:10 +03:00
---
kind: signature
2024-07-13 10:36:13 +03:00
hmac: 2758b59a6150764978d01f05379a929043ca72cc02a0fbe5fdd82365bfa7cb98
2023-03-05 12:00:10 +03:00
...