diff --git a/.drone.yml b/.drone.yml index 8fd4d3e..ea80257 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,11 @@ steps: from_secret: DOCKER_IMAGE_NAME DOCKER_REGISTRY_USER: from_secret: DOCKER_REGISTRY_USER + volumes: + - name: dockersock + path: /var/run commands: + - sleep 5 - echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.io --username $DOCKER_REGISTRY_USER --password-stdin - docker build --no-cache -t "$DOCKER_IMAGE_NAME:latest" . - docker push "$DOCKER_IMAGE_NAME:latest" @@ -23,4 +27,16 @@ trigger: branch: - main # ref: - # - refs/tags/v.*.*.* \ No newline at end of file + # - refs/tags/v.*.*.* + +services: +- name: docker + image: docker:20.10.22-dind-alpine3.17 + privileged: true + volumes: + - name: dockersock + path: /var/run + +volumes: +- name: dockersock + temp: {} \ No newline at end of file