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

This commit is contained in:
Giles Bradshaw 2020-05-11 10:04:40 +01:00
parent 60e24f4824
commit 47fdaaf7e2
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),
]
)