shuttle-drone-templates/.drone.yml

34 lines
833 B
YAML
Raw Normal View History

2023-04-07 19:32:12 +02:00
type: docker
kind: pipeline
2023-04-07 19:32:55 +02:00
name: "shuttle-drone-templates"
2023-04-07 19:32:12 +02:00
steps:
- name: "build"
2023-04-07 19:53:34 +02:00
image: docker.io/kasperhermansen/shuttle-drone:1680889993558
2023-04-07 19:32:12 +02:00
volumes:
- name: dockersock
path: /var/run
environment:
2023-04-07 19:47:54 +02:00
#DOCKER_BUILDKIT: 1
2023-04-07 19:38:31 +02:00
DOCKER_PASSWORD:
2023-04-07 19:43:17 +02:00
from_secret: docker_password
2023-04-07 19:38:31 +02:00
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_HOST: docker.io
2023-04-07 19:32:12 +02:00
commands:
2023-04-07 19:43:17 +02:00
- sleep 10
2023-04-07 19:46:36 +02:00
- echo "$DOCKER_PASSWORD"
- echo "$DOCKER_USERNAME"
2023-04-07 19:55:45 +02:00
#- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
2023-04-07 19:43:17 +02:00
- echo "got this far"
2023-04-07 19:32:12 +02:00
- shuttle run build
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}