nsd-docker/.drone.yml

19 lines
293 B
YAML
Raw Normal View History

2020-04-20 08:49:48 +00:00
---
2020-04-20 08:46:18 +00:00
kind: pipeline
2020-04-20 08:49:48 +00:00
type: docker
2020-04-20 08:46:18 +00:00
name: default
steps:
2020-04-20 08:53:47 +00:00
- name: Build docker image
image: docker:latest
volumes:
2020-04-20 08:55:11 +00:00
- name: docker_sock
path: /var/run/docker.sock
2020-04-20 08:53:47 +00:00
commands:
2020-04-20 08:55:11 +00:00
- docker build --no-cache -t nsd-docker .
2020-04-20 08:53:47 +00:00
volumes:
- name: docker_sock
host:
path: /var/run/docker.sock