add basic dockerfile and woodpecker configuration
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-03-07 17:04:04 -05:00
parent 354fd1b431
commit 6d6630b7c1
3 changed files with 29 additions and 1 deletions

15
.woodpecker.yml Normal file
View File

@@ -0,0 +1,15 @@
pipeline:
build:
image: docker
commands:
- apk add curl
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD registry.yetaga.in
- docker build -t registry.yetaga.in/bookstores:latest .
- docker push registry.yetaga.in/bookstores:latest
- 'curl http://172.17.0.1:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN"'
- 'curl http://172.17.0.1:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN"'
secrets: [docker_username, docker_password, compose_token]
when:
branch: "master"
volumes:
- /var/run/docker.sock:/var/run/docker.sock