ansible-deployment-container/.drone.yml
Simon Cornet 6f31d8c9e2
Some checks failed
continuous-integration/drone/push Build is failing
[Docker] Updated image repository url
2022-11-22 12:34:54 +01:00

33 lines
572 B
YAML

---
kind: 'pipeline'
name: 'build'
type: 'docker'
steps:
# build and publish
- image: 'plugins/docker'
name: 'publish'
pull: 'always'
settings:
# registery and repos
registry: 'registry.hub.docker.com'
cache_from: 'rakepanorama/ansible-deployment'
repo: 'rakepanorama/ansible-deployment'
# build stuff
dockerfile: 'Dockerfile.linux.amd64'
daemon_off: 'false'
# authentication
username:
from_secret: 'docker_username'
password:
from_secret: 'docker_password'
# tags
tags:
- 'v0.10'
- 'latest'