File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,15 @@ import (
1515)
1616
1717type UpCmd struct {
18- EnvDir string `help:"Directory containing the environment." required:"" default:"./env"`
19- Name string `help:"Name of the environment to start." required:"" short:"n" default:"default"`
20- NoConfigure bool `help:"Don't template config files before starting containers"`
21- Overwrite bool `help:"Overwrite existing environment if it exists." short:"o"`
22- Detach bool `help:"Run containers in detached mode." short:"d"`
23- Build bool `help:"Build images before starting containers." short:"b"`
24- NoCache bool `help:"Do not use cache when building images." short:"c"`
25- WithConfig string `help:"Path to a custom configuration file. Replaces the default config." type:"existingfile"`
18+ EnvDir string `help:"Directory containing the environment." required:"" default:"./env"`
19+ Name string `help:"Name of the environment to start." required:"" short:"n" default:"default"`
20+ NoConfigure bool `help:"Don't template config files before starting containers"`
21+ Overwrite bool `help:"Overwrite existing environment if it exists." short:"o"`
22+ Detach bool `help:"Run containers in detached mode." short:"d"`
23+ Build bool `help:"Build images before starting containers." short:"b"`
24+ NoCache bool `help:"Do not use cache when building images." short:"c"`
25+ WithConfig string `help:"Path to a custom configuration file. Replaces the default config." type:"existingfile"`
2626 WithDockerCompose string `help:"Path to a custom Docker Compose file. Replaces the default file." type:"existingfile"`
27-
2827}
2928
3029func (c * UpCmd ) Run () error {
You can’t perform that action at this time.
0 commit comments