bvplan/.drone.yml

26 lines
456 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: ameba
image: veelenga/ameba
commands:
- cd bvplan
- ameba src
- name: build
image: tmaier/docker-compose
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker-compose build --build-arg BUILD_ENV=development bvplan
depends_on:
- ameba
volumes:
- name: dockersock
host:
path: /var/run/docker.sock