.
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,
|
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"),
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue