David Ashby
3af97b1d4d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
23 lines
719 B
YAML
23 lines
719 B
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
partial: false
|
|
depth: 15
|
|
|
|
steps:
|
|
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://100.113.98.36:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN"'
|
|
- 'curl http://100.113.98.36: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
|