1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

updated devops which removed use of placeholders in taskdef

This commit is contained in:
Lee Brown
2019-08-28 23:21:12 -08:00
parent 4674551785
commit 58c1c6be06
9 changed files with 304 additions and 112 deletions

View File

@ -358,6 +358,21 @@ Access/Secret Keys are required
--no-push disable pushing release image to remote repository
```
* `build image` - Executes a build for a single image
```bash
$ cicd -env [dev|stage|prod] build image -name NNNNN [command options]
```
Options:
```bash
--name value, -n value target image, required
--release-tag value, --tag value optional tag to override default CI_COMMIT_SHORT_SHA
--dry-run print out the build details
--no-cache skip caching for the docker build
--no-push disable pushing release image to remote repository
```
* `deploy infrastructure` - Executes a deploy to setup the infrastructure for the deployment environment.
```bash