From 0bb136a758512792d393cfb5b4714365c9f44a0f Mon Sep 17 00:00:00 2001 From: Struchkov Mark Date: Sun, 18 Dec 2022 01:14:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B1=D0=BE=D1=80=D0=BA=D0=B0=20drone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1432b07..3b83907 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,7 +5,7 @@ name: docker-with-buildx steps: - name: docker build an publish - image: docker:dind + image: docker:20.10.22-dind-alpine3.17 environment: DOCKER_REGISTRY_TOKEN: from_secret: DOCKER_REGISTRY_TOKEN @@ -13,28 +13,24 @@ steps: from_secret: DOCKER_IMAGE_NAME DOCKER_REGISTRY_USER: from_secret: DOCKER_REGISTRY_USER + DOCKER_HOST: tcp://docker:2375 volumes: - name: dockersock path: /var/run commands: - sleep 15 - 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 build --no-cache -t "$DOCKER_IMAGE_NAME:latest" . - docker push "$DOCKER_IMAGE_NAME:latest" - - docker push "$DOCKER_IMAGE_NAME:$DRONE_TAG" + # - docker push "$DOCKER_IMAGE_NAME:$DRONE_TAG" trigger: - ref: - - refs/tags/v.*.*.* + branch: + - main + # ref: + # - refs/tags/v.*.*.* services: - name: docker - image: docker:dind - privileged: true - volumes: - - name: dockersock - path: /var/run - -volumes: -- name: dockersock - temp: {} \ No newline at end of file + image: docker:20.10.22-dind-alpine3.17 + privileged: true \ No newline at end of file