.
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,
),
wait(15, "wait"),
build("guacamole-postgresql"),
# build("guacamole-postgresql"),
build("ngrok-gitea"),
build("letsencrypt-nginx"),
build("drone-starlark"),

View File

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