You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/codefresh-yaml/steps/build.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ Use Docker to build an image and store it in Codefresh.
15
15
In Codefresh, docker containers are first-class citizens
16
16
and special typed steps are offered for the most usual docker commands. Build steps are a secure replacement for`docker build` commands.
17
17
18
-
19
18
Therefore, this command on your local workstation:
20
19
21
20
```
@@ -84,7 +83,7 @@ step_name:
84
83
| `registry` | The registry logical name of one of the inserted registries from the integration view. <br>The default value will be your default registry [if you have more than one]({{site.baseurl}}/docs/docker-registries/external-docker-registries/). | Optional |
85
84
| `registry_contexts` | Advanced property for resolving Docker images when [working with multiple registries with the same domain]({{site.baseurl}}/docs/docker-registries/working-with-docker-registries/#working-with-multiple-registries-with-the-same-domain) | Optional |
86
85
|`disable_push` | Do not push to any registry automatically. | Optional |
87
-
|`tag_policy` | Push the tag without changeit tolowercase automatically. By default `tag:MixedCase` will be pushed as `image_name:mixedcase`| Optional |
86
+
|`tag_policy` | Push the tagnamewithout changeorlowercaseitautomatically. By default `tag:MixedCase` will be pushed as `image_name:mixedcase`. Possible options are `original` and `lowercase`. Default is `lowercase` | Default |
88
87
| `no_cache` | Disable Docker engine cache for the build [more info](https://codefresh.io/docs/docs/troubleshooting/common-issues/disabling-codefresh-caching-mechanisms/) | Optional |
89
88
| `no_cf_cache` | Disable Codefresh build optimization for the build [more info](https://codefresh.io/docs/docs/troubleshooting/common-issues/disabling-codefresh-caching-mechanisms/)
90
89
| `build_arguments` | A set of [Docker build arguments](https://docs.docker.com/engine/reference/commandline/build/#set-build-time-variables-build-arg) to pass to the build process. | Optional |
- Tag policy for transforming a docker tag in lowercase or not -[documentation]({{site.baseurl}}/docs/codefresh-yaml/steps/build/#fields)
19
20
- Support for App-of-app patterns in the GitOps dashboard-[documentation]({{site.baseurl}}/docs/ci-cd-guides/gitops-deployments/#using-the-app-of-apps-pattern)