.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-04-27 20:36:06 +01:00
parent 3dc620bb4f
commit 215a6703c6
2 changed files with 15 additions and 13 deletions

View File

@ -29,7 +29,7 @@ def main(ctx):
secretSecrets, secretSecrets,
), ),
wait(15, "wait"), wait(15, "wait"),
build("guacamole-postgresql"), # build("guacamole-postgresql"),
build("ngrok-gitea"), build("ngrok-gitea"),
build("letsencrypt-nginx"), build("letsencrypt-nginx"),
build("drone-starlark"), build("drone-starlark"),

View File

@ -2,6 +2,8 @@ def pipeline(
name, name,
steps, steps,
dependsOn, dependsOn,
volumes,
dockerVolumes
): ):
return { return {
"kind": "pipeline", "kind": "pipeline",
@ -18,11 +20,11 @@ def pipeline(
"name": "dockersock", "name": "dockersock",
"path": "/var/run", "path": "/var/run",
}, },
{ #{
"name": "ca", # "name": "ca",
"path": "/etc/docker/certs.d", # "path": "/etc/docker/certs.d",
}, #},
], ] + dockerVolumes,
} }
], ],
"volumes": [ "volumes": [
@ -30,11 +32,11 @@ def pipeline(
"name": "dockersock", "name": "dockersock",
"temp": {}, "temp": {},
}, },
{ #{
"name": "ca", # "name": "ca",
"host": { # "host": {
"path": "/home/giles/gitea-drone-stack/.ca", # "path": "/home/giles/gitea-drone-stack/.ca",
}, # },
}, #},
], ] + volumes,
} }