@@ -18,6 +18,7 @@ package compose
18
18
19
19
import (
20
20
"context"
21
+ "fmt"
21
22
"os"
22
23
23
24
"github.com/compose-spec/compose-go/types"
@@ -35,6 +36,8 @@ type buildOptions struct {
35
36
pull bool
36
37
progress string
37
38
args []string
39
+ noCache bool
40
+ memory string
38
41
}
39
42
40
43
func buildCommand (p * projectOptions ) * cobra.Command {
@@ -45,6 +48,9 @@ func buildCommand(p *projectOptions) *cobra.Command {
45
48
Use : "build [SERVICE...]" ,
46
49
Short : "Build or rebuild services" ,
47
50
RunE : func (cmd * cobra.Command , args []string ) error {
51
+ if opts .memory != "" {
52
+ fmt .Println ("WARNING --memory is ignored as not supported in buildkit." )
53
+ }
48
54
if opts .quiet {
49
55
devnull , err := os .Open (os .DevNull )
50
56
if err != nil {
@@ -65,6 +71,11 @@ func buildCommand(p *projectOptions) *cobra.Command {
65
71
cmd .Flags ().MarkHidden ("compress" ) //nolint:errcheck
66
72
cmd .Flags ().Bool ("force-rm" , true , "Always remove intermediate containers. DEPRECATED" )
67
73
cmd .Flags ().MarkHidden ("force-rm" ) //nolint:errcheck
74
+ cmd .Flags ().BoolVar (& opts .noCache , "no-cache" , false , "Do not use cache when building the image" )
75
+ cmd .Flags ().Bool ("no-rm" , false , "Do not remove intermediate containers after a successful build. DEPRECATED" )
76
+ cmd .Flags ().MarkHidden ("no-rm" ) //nolint:errcheck
77
+ cmd .Flags ().StringVarP (& opts .memory , "memory" , "m" , "" , "Set memory limit for the build container. Not supported on buildkit yet." )
78
+ cmd .Flags ().MarkHidden ("memory" ) //nolint:errcheck
68
79
69
80
return cmd
70
81
}
@@ -85,6 +96,7 @@ func runBuild(ctx context.Context, opts buildOptions, services []string) error {
85
96
Pull : opts .pull ,
86
97
Progress : opts .progress ,
87
98
Args : types .NewMapping (opts .args ),
99
+ NoCache : opts .noCache ,
88
100
})
89
101
})
90
102
return err
0 commit comments