Skip to content

Commit

Permalink
Limit containers mem to 32G by default in compose tool (#6537)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish-goswami authored Sep 21, 2020
1 parent b444f2c commit 7e31cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ func main() {
"include ratel service")
cmd.PersistentFlags().IntVar(&opts.RatelPort, "ratel_port", 8000,
"Port to expose Ratel service")
cmd.PersistentFlags().StringVarP(&opts.MemLimit, "mem", "", "",
cmd.PersistentFlags().StringVarP(&opts.MemLimit, "mem", "", "32G",
"Limit memory provided to the docker containers, for example 8G.")

err := cmd.ParseFlags(os.Args)
Expand Down

0 comments on commit 7e31cb9

Please sign in to comment.