Skip to content
This repository has been archived by the owner on Jun 13, 2021. It is now read-only.

APP-304 Update flag for App definition in app build help #725

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/commands/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $ docker app build . -f myapp.dockerapp -t myrepo/myapp:1.0.0`,
flags.StringVar(&opts.progress, "progress", "auto", "Set type of progress output (auto, plain, tty). Use plain to show container output")
flags.BoolVar(&opts.noResolveImage, "no-resolve-image", false, "Do not query the registry to resolve image digest")
flags.StringVarP(&opts.tag, "tag", "t", "", "App image tag, optionally in the 'repo:tag' format")
flags.StringVarP(&opts.folder, "folder", "f", "", "App definition as a .dockerapp directory")
flags.StringVarP(&opts.folder, "file", "f", "", "App definition as a .dockerapp directory")
flags.BoolVar(&opts.pull, "pull", false, "Always attempt to pull a newer version of the App image")
flags.StringArrayVar(&opts.args, "build-arg", []string{}, "Set build-time variables")
flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Suppress the build output and print App image ID on success")
Expand Down