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
3f9a9924d9
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: OzOj/c2qtNEtwoZluSPOy9cwWBiqGcqWC2cpRFr36MMXpQrO16jGSsF38z0=
|
||||
|
||||
---
|
||||
# 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
|
||||
type: docker
|
||||
|
@ -7,8 +25,12 @@ steps:
|
|||
- name: docker
|
||||
image: plugins/docker
|
||||
settings:
|
||||
username: kevinbacon
|
||||
password: pa55word
|
||||
registry:
|
||||
from_secret: $REGISTRY_URL
|
||||
username:
|
||||
from_secret: $REGISTRY_USERNAME
|
||||
password:
|
||||
from_secret: $REGISTRY_PASSWORD
|
||||
repo: simonc/docker-s3-volume-watch
|
||||
tags:
|
||||
- latest
|
||||
|
|
Loading…
Reference in New Issue