@@ -75,6 +75,7 @@ func createCommand(p *ProjectOptions, dockerCli command.Cli, backend api.Service
75
75
flags .BoolVar (& opts .Build , "build" , false , "Build images before starting containers" )
76
76
flags .BoolVar (& opts .noBuild , "no-build" , false , "Don't build an image, even if it's policy" )
77
77
flags .StringVar (& opts .Pull , "pull" , "policy" , `Pull image before running ("always"|"missing"|"never"|"build")` )
78
+ flags .BoolVar (& opts .quietPull , "quiet-pull" , false , "Pull without printing progress information" )
78
79
flags .BoolVar (& opts .forceRecreate , "force-recreate" , false , "Recreate containers even if their configuration and image haven't changed" )
79
80
flags .BoolVar (& opts .noRecreate , "no-recreate" , false , "If containers already exist, don't recreate them. Incompatible with --force-recreate." )
80
81
flags .BoolVar (& opts .removeOrphans , "remove-orphans" , false , "Remove containers for services not defined in the Compose file" )
@@ -105,7 +106,7 @@ func runCreate(ctx context.Context, _ command.Cli, backend api.Service, createOp
105
106
RecreateDependencies : createOpts .dependenciesRecreateStrategy (),
106
107
Inherit : ! createOpts .noInherit ,
107
108
Timeout : createOpts .GetTimeout (),
108
- QuietPull : false ,
109
+ QuietPull : createOpts . quietPull ,
109
110
})
110
111
}
111
112
0 commit comments