16 lines
328 B
YAML
16 lines
328 B
YAML
kind: pipeline
|
|
name: "test drone config"
|
|
steps:
|
|
- commands:
|
|
- "docker build -t xena/kubermemes ."
|
|
image: docker:dind
|
|
name: "build image xena/kubermemes"
|
|
volumes:
|
|
- name: dockersock
|
|
path: /var/run/docker.sock
|
|
type: docker
|
|
volumes:
|
|
- host:
|
|
path: /var/run/docker.sock
|
|
name: dockersock
|