2023-10-12 01:43:43 +00:00
|
|
|
clone:
|
|
|
|
git:
|
2023-10-12 01:51:08 +00:00
|
|
|
image: woodpeckerci/plugin-git
|
2023-10-12 01:43:43 +00:00
|
|
|
settings:
|
2023-10-12 01:54:14 +00:00
|
|
|
partial: false
|
2023-10-12 01:51:08 +00:00
|
|
|
depth: 15
|
2023-10-12 01:43:43 +00:00
|
|
|
|
|
|
|
steps:
|
2023-03-07 22:04:04 +00:00
|
|
|
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
|
2023-05-07 14:19:46 +00:00
|
|
|
- '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"'
|
2023-03-07 22:04:04 +00:00
|
|
|
secrets: [docker_username, docker_password, compose_token]
|
|
|
|
when:
|
|
|
|
branch: "master"
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|