feat: Add registry configuration
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
a6071706c6
commit
0ab9f6b6a0
26
.drone.yml
26
.drone.yml
|
@ -1,3 +1,21 @@
|
||||||
|
---
|
||||||
|
# drone encrypt ResiLien/docker-s3-volume-watch $REGISTRY_URL
|
||||||
|
kind: secret
|
||||||
|
name: REGISTRY_URL
|
||||||
|
data: S9yK2vYmX82XfJYaQW+gQAgBDZ24DlWhswkC0hSEar2uxAkatq7x8mxi2+M=
|
||||||
|
|
||||||
|
---
|
||||||
|
# drone encrypt ResiLien/docker-s3-volume-watch $REGISTRY_USERNAME
|
||||||
|
kind: secret
|
||||||
|
name: REGISTRY_USERNAME
|
||||||
|
data: nWD+Q9IZSvWw6aDlxBgjvaQqsyU9Muub4A9wJMIfZ8A18g==
|
||||||
|
|
||||||
|
---
|
||||||
|
# drone encrypt ResiLien/docker-s3-volume-watch $REGISTRY_PASSWORD
|
||||||
|
kind: secret
|
||||||
|
name: REGISTRY_PASSWORD
|
||||||
|
data: fshphgiLW3gyuwhKHgSe7m6Y/LXtse2VEYABvjWYCov8w85+CMa5hjkHSiO+dgRCMOC4+OE5ZlZjD/5hAURi6TsBTZw0h5fWsnEjMR6L
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
|
@ -7,8 +25,12 @@ steps:
|
||||||
- name: docker
|
- name: docker
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
username: kevinbacon
|
registry:
|
||||||
password: pa55word
|
from_secret: $REGISTRY_URL
|
||||||
|
username:
|
||||||
|
from_secret: $REGISTRY_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: $REGISTRY_PASSWORD
|
||||||
repo: simonc/docker-s3-volume-watch
|
repo: simonc/docker-s3-volume-watch
|
||||||
tags:
|
tags:
|
||||||
- latest
|
- latest
|
||||||
|
|
Loading…
Reference in New Issue