.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
3dc620bb4f
commit
215a6703c6
|
@ -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"),
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
|
|
Reference in New Issue