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: README.md
+25-35
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,14 @@
5
5
6
6
## :test_tube: Experimental
7
7
8
-
This repository is considered **EXPERIMENTAL** and under active development until further notice. It is subject to
9
-
non-backward compatible changes or removal in any future version so you should [pin to a specific tag/commit](https://docs.github.com/en/actions/creating-actions/about-actions#using-tags-for-release-management)
This repository is considered **EXPERIMENTAL** and under active development
9
+
until further notice. It is subject to non-backward compatible changes or
10
+
removal in any future version, so you should [pin to a specific tag/commit](https://docs.github.com/en/actions/creating-actions/about-actions#using-tags-for-release-management)
| `files` | List/CSV | List of [bake definition files](https://github.com/docker/buildx/blob/master/docs/reference/buildx_bake.md#file) |
85
-
| `workdir` | String | Working directory of execution |
86
-
| `targets` | List/CSV | List of bake targets (if empty, Buildx Bake will build target `default`) |
87
-
| `no-cache` | Bool | Do not use cache when building the image (default `false`) |
88
-
| `pull` | Bool | Always attempt to pull a newer version of the image (default `false`) |
89
-
| `load` | Bool | Load is a shorthand for `--set=*.output=type=docker` (default `false`) |
90
-
| `push` | Bool | Push is a shorthand for `--set=*.output=type=registry` (default `false`) |
91
-
| `set` | List | List of [targets values to override](https://github.com/docker/buildx/blob/master/docs/reference/buildx_bake.md#set) (eg: `targetpattern.key=value`) |
92
-
| `source` | String | [Remote bake definition](https://github.com/docker/buildx/blob/master/docs/guides/bake/file-definition.md#remote-definition) to build from |
| `files` | List/CSV | List of [bake definition files](https://docs.docker.com/build/customize/bake/file-definition/) |
86
+
| `workdir` | String | Working directory of execution |
87
+
| `targets` | List/CSV | List of bake targets (`default` target used if empty) |
88
+
| `no-cache` | Bool | Do not use cache when building the image (default `false`) |
89
+
| `pull` | Bool | Always attempt to pull a newer version of the image (default `false`) |
90
+
| `load` | Bool | Load is a shorthand for `--set=*.output=type=docker` (default `false`) |
91
+
| `push` | Bool | Push is a shorthand for `--set=*.output=type=registry` (default `false`) |
92
+
| `set` | List | List of [targets values to override](https://docs.docker.com/engine/reference/commandline/buildx_bake/#set) (eg: `targetpattern.key=value`) |
93
+
| `source` | String | [Remote bake definition](https://docs.docker.com/build/customize/bake/file-definition/#remote-definition) to build from |
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
105
-
has [native GitHub Actions support](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem),
106
-
to enable it on your GitHub repo all you need to do is add the `.github/dependabot.yml` file:
107
-
108
-
```yaml
109
-
version: 2
110
-
updates:
111
-
# Maintain dependencies for GitHub Actions
112
-
- package-ecosystem: "github-actions"
113
-
directory: "/"
114
-
schedule:
115
-
interval: "daily"
116
-
```
105
+
Want to contribute? Awesome! You can find information about contributing to
106
+
this project in the [CONTRIBUTING.md](/.github/CONTRIBUTING.md)
0 commit comments