From c559bc379a19f5f3a9129f9f9e83a4f0110f2d53 Mon Sep 17 00:00:00 2001 From: Struchkov Mark Date: Sun, 18 Dec 2022 01:05:30 +0300 Subject: [PATCH] =?UTF-8?q?=20=D0=9D=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B9?= =?UTF-8?q?=D0=BA=D0=B0=20CICD=20=D1=81=20=D0=BF=D0=BE=D0=BC=D0=BE=D1=89?= =?UTF-8?q?=D1=8C=D1=8E=20Drone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index e45e3bd..dd7cd19 100644 --- a/.drone.yml +++ b/.drone.yml @@ -21,6 +21,7 @@ steps: DOCKER_REGISTRY_USER: from_secret: DOCKER_REGISTRY_USER commands: + - sleep 15 - echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.io --username $DOCKER_REGISTRY_USER --password-stdin - docker buildx create --use - docker buildx build --push --platform linux/amd64,linux/arm64/v8 -t "$DOCKER_IMAGE_NAME:develop" . @@ -29,7 +30,17 @@ trigger: branch: - develop +services: + - name: docker + image: docker:dind + privileged: true + volumes: + - name: dockersock + path: /var/run + volumes: - name: m2 host: - path: /drone/volume/m2 \ No newline at end of file + path: /drone/volume/m2 + - name: dockersock + temp: { } \ No newline at end of file