Skip to content

Commit

Permalink
Revert "default --menu to true"
Browse files Browse the repository at this point in the history
This reverts commit 8112f9f.
  • Loading branch information
jhrotko committed Mar 21, 2024
1 parent 0592099 commit c7f443b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/compose/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func upCommand(p *ProjectOptions, dockerCli command.Cli, backend api.Service, ex
flags.BoolVar(&up.wait, "wait", false, "Wait for services to be running|healthy. Implies detached mode.")
flags.IntVar(&up.waitTimeout, "wait-timeout", 0, "Maximum duration to wait for the project to be running|healthy")
flags.BoolVarP(&up.watch, "watch", "w", false, "Watch source code and rebuild/refresh containers when files are updated.")
flags.BoolVar(&up.navigationMenu, "menu", true, "Enable interactive shortcuts when running attached (Experimental). Incompatible with --detach.")
flags.BoolVar(&up.navigationMenu, "menu", false, "Enable interactive shortcuts when running attached (Experimental). Incompatible with --detach.")
flags.MarkHidden("menu") //nolint:errcheck

return upCmd
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/docker_compose_up.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ options:
swarm: false
- option: menu
value_type: bool
default_value: "true"
default_value: "false"
description: |
Enable interactive shortcuts when running attached (Experimental). Incompatible with --detach.
deprecated: false
Expand Down

0 comments on commit c7f443b

Please sign in to comment.