drone-test/.drone.yml

29 lines
384 B
YAML
Raw Normal View History

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