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

Fix init help message. #689

Merged
merged 1 commit into from
Oct 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/commands/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func initCmd(dockerCli command.Cli) *cobra.Command {
cmd := &cobra.Command{
Use: "init APP_NAME [--compose-file COMPOSE_FILE] [OPTIONS]",
Short: "Initialize Docker Application definition",
Long: `Start building a Docker Application package. If there is a docker-compose.yml file in the current directory it will be copied and used.`,
Long: `Start building a Docker Application package.`,
Example: `$ docker app init myapp`,
Args: cli.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down