drone-test/.drone.yml

27 lines
373 B
YAML
Raw Normal View History

2022-08-10 00:09:50 +00:00
---
kind: pipeline
name: default
steps:
- name: test
image: docker:dind
2022-08-10 00:17:23 +00:00
arch: amd64
2022-08-10 00:09:50 +00:00
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: {}