Добавил сборку для drone
This commit is contained in:
parent
996accda36
commit
e54be04d7a
24
.drone.yml
Normal file
24
.drone.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: docker-with-buildx
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: docker build an publish
|
||||||
|
image: 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
|
||||||
|
commands:
|
||||||
|
- echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.io --username $DOCKER_REGISTRY_USER --password-stdin
|
||||||
|
- docker build --no-cache -t "$DOCKER_IMAGE_NAME:latest" -t "$DOCKER_IMAGE_NAME:$DRONE_TAG" .
|
||||||
|
- docker push "$DOCKER_IMAGE_NAME:latest"
|
||||||
|
- docker push "$DOCKER_IMAGE_NAME:$DRONE_TAG"
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
ref:
|
||||||
|
- refs/tags/v.*.*.*
|
Loading…
Reference in New Issue
Block a user