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
{{ message }}
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
- Align usage with Docker CLI
- Remove short options that are not commonly used
- Clarify help and flag messages
- Add examples for each command
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
cmd.Flags().BoolVarP(&initSingleFile, "single-file", "s", false, "Create a single-file application")
27
+
cmd.Flags().StringVar(&initComposeFile, "compose-file", "", "Compose file to use as application base (optional)")
28
+
cmd.Flags().StringVar(&initDescription, "description", "", "Human readable description of your application (optional)")
29
+
cmd.Flags().StringArrayVar(&initMaintainers, "maintainer", []string{}, "Name and email address of person responsible for the application (name:email) (optional)")
30
+
cmd.Flags().BoolVar(&initSingleFile, "single-file", false, "Create a single-file Docker Application definition")
0 commit comments