library/.woodpecker.yml

18 lines
476 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
2022-04-03 19:19:06 +00:00
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD registry.yetaga.in
2022-04-03 19:07:38 +00:00
- docker build -t registry.yetaga.in/library:latest .
- docker push registry.yetaga.in/library:latest
2022-04-03 19:19:06 +00:00
secrets: [docker_username, docker_password]
2022-04-03 19:07:38 +00:00
services:
docker:
image: docker:18.09-dind
command: ["--storage-driver=vfs"]
privileged: true