mirror of
https://github.com/thegeeklab/wp-docker-buildx.git
synced 2024-11-12 16:20:41 +00:00
docs: adjust helptext for the output option (#72)
This commit is contained in:
parent
ee13dd891e
commit
df617139de
@ -140,10 +140,10 @@ pull_image
|
|||||||
: enforces to pull base image at build time (default `true`)
|
: enforces to pull base image at build time (default `true`)
|
||||||
|
|
||||||
compress
|
compress
|
||||||
: enables compression og the build context using gzip
|
: enables compression of the build context using gzip
|
||||||
|
|
||||||
output
|
output
|
||||||
: sets output folder for build artifacts (format: `path` or `type=TYPE[,KEY=VALUE]`)
|
: sets the [export action](https://docs.docker.com/engine/reference/commandline/buildx_build/#output) for the build result (format: `path` or `type=TYPE[,KEY=VALUE]`)
|
||||||
|
|
||||||
repo
|
repo
|
||||||
: sets repository name for the image
|
: sets repository name for the image
|
||||||
|
@ -153,7 +153,7 @@ func settingsFlags(settings *plugin.Settings) []cli.Flag {
|
|||||||
&cli.StringFlag{
|
&cli.StringFlag{
|
||||||
Name: "output",
|
Name: "output",
|
||||||
EnvVars: []string{"PLUGIN_OUTPUT"},
|
EnvVars: []string{"PLUGIN_OUTPUT"},
|
||||||
Usage: "sets build output folder",
|
Usage: "sets the export action for the build result",
|
||||||
Destination: &settings.Build.Output,
|
Destination: &settings.Build.Output,
|
||||||
},
|
},
|
||||||
&cli.StringFlag{
|
&cli.StringFlag{
|
||||||
@ -178,7 +178,7 @@ func settingsFlags(settings *plugin.Settings) []cli.Flag {
|
|||||||
&cli.BoolFlag{
|
&cli.BoolFlag{
|
||||||
Name: "compress",
|
Name: "compress",
|
||||||
EnvVars: []string{"PLUGIN_COMPRESS"},
|
EnvVars: []string{"PLUGIN_COMPRESS"},
|
||||||
Usage: "enables compression og the build context using gzip",
|
Usage: "enables compression of the build context using gzip",
|
||||||
Destination: &settings.Build.Compress,
|
Destination: &settings.Build.Compress,
|
||||||
},
|
},
|
||||||
&cli.StringFlag{
|
&cli.StringFlag{
|
||||||
|
Loading…
Reference in New Issue
Block a user