Compare commits

...

2 Commits
master ... do

Author SHA1 Message Date
Giles Bradshaw e1b0a3fd73 .
continuous-integration/drone/push Build is passing Details
2020-05-11 10:06:02 +01:00
Giles Bradshaw 47fdaaf7e2 .
continuous-integration/drone/push Build is passing Details
2020-05-11 10:04:40 +01:00
1 changed files with 16 additions and 0 deletions

16
.drone-do.star Normal file
View File

@ -0,0 +1,16 @@
load("@this//chat:drone.star", "drone")
load("@this//chat:stack-name.star", "stackName")
load("@this//chat:stack-root.star", "stackRoot")
def main(ctx):
return drone(
ctx,
"do",
stackRoot,
stackName,
[
"docker service scale {name}_chat=1".format(name=stackName),
]
)