library/.woodpecker.yml

16 lines
348 B
YAML
Raw Normal View History

2022-04-03 00:20:34 +00:00
pipeline:
build:
image: docker
environment:
2022-04-03 19:07:38 +00:00
- DOCKER_HOST=tcp://docker:2375
2022-04-03 00:20:34 +00:00
commands:
2022-04-03 19:07:38 +00:00
- sleep 5
- docker build -t registry.yetaga.in/library:latest .
- docker push registry.yetaga.in/library:latest
services:
docker:
image: docker:18.09-dind
command: ["--storage-driver=vfs"]
privileged: true