0
0
forked from toolshed/abra

WIP: make "abra app deploy" callable by code

Closes coop-cloud/organising#212.
This commit is contained in:
2021-11-03 09:20:40 +01:00
parent 911f22233f
commit c227972c12
8 changed files with 210 additions and 189 deletions

View File

@ -338,7 +338,11 @@ func deployTraefik(c *cli.Context, cl *dockerClient.Client, domainName string) e
logrus.Fatal(err)
}
// TODO: run app deploy with all args passed through
internal.AppName = domainName
if err := internal.DeployAction(c); err != nil {
logrus.Fatal(err)
}
return nil
}