drone-test/.drone.yml

27 lines
373 B
YAML

---
kind: pipeline
name: default
steps:
- name: test
image: docker:dind
arch: amd64
volumes:
- name: dockersock
path: /var/run
commands:
- sleep 5 # give docker enough time to start
- docker ps -a
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}