21 lines
492 B
YAML
21 lines
492 B
YAML
pipeline:
|
|
build:
|
|
image: xataz/docker-drone-plugin
|
|
repo: xataz/lutim
|
|
action: build
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
push:
|
|
image: xataz/docker-drone-plugin
|
|
repo: xataz/lutim
|
|
action: push
|
|
environment:
|
|
- UID=1000
|
|
- GID=991
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /home/xataz/.docker/config.json:/docker/.docker/config.json
|
|
when:
|
|
branch: master
|
|
event: [push, tag, deployment] |