mob/.drone.yml

25 lines
383 B
YAML
Raw Normal View History

2024-09-05 20:05:45 +08:00
---
kind: pipeline
name: default
steps:
- name: test
image: docker:dind
volumes:
- name: dockersock
2024-09-05 20:07:57 +08:00
path: /var/run/docker.sock
2024-09-05 20:05:45 +08:00
commands:
- sleep 5 # give docker enough time to start
- docker ps -a
services:
- name: docker
image: docker:dind
2024-09-05 20:06:11 +08:00
#privileged: true
2024-09-05 20:05:45 +08:00
volumes:
- name: dockersock
2024-09-05 20:07:57 +08:00
path: /var/run/docker.sock
2024-09-05 20:05:45 +08:00
volumes:
- name: dockersock
temp: {}