shuttle-drone-templates/.drone.yml
kjuulh b04473daaf
Some checks failed
continuous-integration/drone/push Build is failing
feat: with actual didn
2023-04-07 21:04:20 +02:00

43 lines
1.0 KiB
YAML

type: docker
kind: pipeline
name: "shuttle-drone-templates"
steps:
- name: test
image: docker:dind
volumes:
- name: dockersock
path: /var/run
commands:
- ls /var/run
- set -eu
- sleep 10
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
- name: "build"
image: docker.io/kasperhermansen/shuttle-drone:1680894029336
volumes:
- name: dockersock
path: /var/run
environment:
#DOCKER_BUILDKIT: 1
DOCKER_PASSWORD:
from_secret: docker_password
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_HOST: docker.io
commands:
- ls /var/run
- set -eu
- sleep 10
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
- shuttle run build
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}