drone-docker-buildx/.drone.yml
Alexander Chumakov ebadcf7c21 Change base image from 17.05.0-ce-dind to 17.10.0-ce-dind
Latest edge version 17.10 have some significant changes.
2017-11-21 12:21:03 +00:00

52 lines
1.1 KiB
YAML

workspace:
base: /go
path: src/github.com/drone-plugins/drone-docker
pipeline:
build:
image: golang:1.9
commands:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
- sh .drone.sh
publish:
image: plugins/docker
repo: plugins/docker
tags: [ "latest", "17", "17.10" ]
secrets: [ docker_username, docker_password ]
dockerfile: docker/Dockerfile
when:
branch: master
event: push
publish_heroku:
image: plugins/docker
repo: plugins/heroku
tags: [ "latest", "17", "17.10" ]
secrets: [ docker_username, docker_password ]
dockerfile: docker/heroku/Dockerfile
when:
branch: master
event: push
publish_gcr:
image: plugins/docker
repo: plugins/gcr
tags: [ "latest", "17", "17.10" ]
secrets: [ docker_username, docker_password ]
dockerfile: docker/gcr/Dockerfile
when:
branch: master
event: push
publish_ecr:
image: plugins/docker
repo: plugins/ecr
tags: [ "latest", "17", "17.10" ]
secrets: [ docker_username, docker_password ]
dockerfile: docker/ecr/Dockerfile
when:
branch: master
event: push