diff --git a/drone-ci/drone.yml b/drone-ci/drone.yml new file mode 100644 index 0000000..ec56e31 --- /dev/null +++ b/drone-ci/drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +name: default + +steps: +- name: test + image: docker:dind + volumes: + - name: dockersock + path: /var/run/docker.sock + commands: + - docker ps -a + +volumes: +- name: dockersock + host: + path: /var/run/docker.sock \ No newline at end of file