2024-02-25 01:38:36 +00:00
|
|
|
steps:
|
2022-04-24 16:43:46 +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/castor:latest .
|
|
|
|
- docker push registry.yetaga.in/castor: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"
|
2024-02-26 00:52:25 +00:00
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|