Skip to content

Commit

Permalink
Fix "docker-compose" call to be just "compose" (CanastaWiki#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronkoren authored Apr 19, 2024
1 parent 24df936 commit 2fbcb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/add/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func NewCmdCreate() *cobra.Command {
addCmd.Flags().StringVarP(&siteName, "site-name", "s", "", "Name of the new wiki site")
addCmd.Flags().StringVarP(&instance.Path, "path", "p", pwd, "Path to the new wiki")
addCmd.Flags().StringVarP(&instance.Id, "id", "i", "", "Canasta instance ID")
addCmd.Flags().StringVarP(&instance.Orchestrator, "orchestrator", "o", "docker-compose", "Orchestrator to use for installation")
addCmd.Flags().StringVarP(&instance.Orchestrator, "orchestrator", "o", "compose", "Orchestrator to use for installation")
addCmd.Flags().StringVarP(&databasePath, "database", "d", "", "Path to the existing database dump")
addCmd.Flags().StringVarP(&admin, "admin", "a", "", "Admin name of the new wiki")
addCmd.Flags().StringVar(&wikidbuser, "wikidbuser", "root", "The username of the wiki database user (default: \"root\")")
Expand Down

0 comments on commit 2fbcb74

Please sign in to comment.