mirror of
https://github.com/containrrr/watchtower.git
synced 2024-12-15 09:14:13 +02:00
952e720807
The circle.yml version on this branch will automatically trigger a Circle CI build and push the resulting Docker image to the DockerHub repo rosscado/watchtower. This is a temporary DockerHub repo for the rosscado/watchtower GitHub repo, and can be used to pull or test unofficial watchtower builds before they are merged into the official centurylink/watchtower repos.
31 lines
834 B
YAML
31 lines
834 B
YAML
machine:
|
|
services:
|
|
- docker
|
|
environment:
|
|
IMAGE_NAME: rosscado/watchtower
|
|
|
|
dependencies:
|
|
override:
|
|
- docker pull centurylink/golang-builder:latest
|
|
|
|
test:
|
|
override:
|
|
- docker run -v $(pwd):/src centurylink/golang-builder:latest --test
|
|
|
|
deployment:
|
|
hub:
|
|
branch: master
|
|
commands:
|
|
- docker run -v $(pwd):/src centurylink/golang-builder:latest
|
|
- docker build -t $IMAGE_NAME:latest .
|
|
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
|
|
- docker push $IMAGE_NAME:latest
|
|
hub_mirror:
|
|
branch: auth
|
|
owner: rosscado
|
|
commands:
|
|
- docker run -v $(pwd):/src centurylink/golang-builder:latest
|
|
- docker build -t rosscado/watchtower:latest .
|
|
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
|
|
- docker push rosscado/watchtower:latest
|