This repository has been archived on 2020-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
stack/.drone-home.star

17 lines
351 B
Plaintext
Raw Normal View History

2020-04-26 13:11:56 +00:00
2020-04-28 16:02:57 +00:00
load("@this//stack:drone.star", "drone")
2020-04-26 12:24:13 +00:00
2020-04-24 06:32:20 +00:00
def main(ctx):
2020-04-28 16:02:57 +00:00
return drone(
2020-04-28 16:03:26 +00:00
ctx,
2020-04-28 16:02:57 +00:00
"home-deploy",
2020-04-29 06:29:28 +00:00
"/stack/deploy",
2020-04-29 08:19:45 +00:00
"stack",
2020-04-28 21:22:55 +00:00
[
2020-04-29 08:19:45 +00:00
"docker service scale stack_ngrok=1",
"docker service scale stack_chat=1",
"docker service scale stack_letsencrypt-drone=1",
"docker service scale stack_letsencrypt-git=1",
2020-04-28 21:22:55 +00:00
]
2020-04-28 16:02:57 +00:00
)