Skip to content

Commit cfe2267

Browse files
authored
Merge pull request #336 from hazelmayank/docs/start-help-flag-descriptions
docs(cli): fix microcks start help descriptions
2 parents b12c047 + 62e6616 commit cfe2267

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/start.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ microcks start --name [name of you container/instance]`,
143143
fmt.Printf("Microcks started successfully at %s\n", server)
144144
},
145145
}
146-
startCmd.Flags().StringVar(&name, "name", "microcks", "name for you microcks instance")
147-
startCmd.Flags().StringVar(&hostPort, "port", "8585", "")
146+
startCmd.Flags().StringVar(&name, "name", "microcks", "name for your Microcks instance")
147+
startCmd.Flags().StringVar(&hostPort, "port", "8585", "Host port to expose Microcks")
148148
startCmd.Flags().StringVar(&imageName, "image", "quay.io/microcks/microcks-uber:latest-native", "image which will be used to create a container")
149-
startCmd.Flags().BoolVar(&autoRemove, "rm", false, "mimic of '--rm' flag of dokcer to automatically remove the container when it exits")
149+
startCmd.Flags().BoolVar(&autoRemove, "rm", false, "mimic of '--rm' flag of Docker to automatically remove the container when it exits")
150150
startCmd.Flags().StringVar(&driver, "driver", "docker", "use --driver to change driver from docker to podman")
151151
return startCmd
152152
}

0 commit comments

Comments
 (0)