-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuilder.go
148 lines (107 loc) · 2.82 KB
/
builder.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// Code generated by lesiw.io/ctrctl. DO NOT EDIT.
package ctrctl
import "os/exec"
type BuilderBuildOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Add a custom host-to-IP mapping (`host:ip`).
AddHost []string
// Set build-time variables.
BuildArg []string
// Images to consider as cache sources.
CacheFrom string
// Set the parent cgroup for the `RUN` instructions during build.
CgroupParent string
// Compress the build context using gzip.
Compress bool
// Limit the CPU CFS (Completely Fair Scheduler) period.
CpuPeriod string
// Limit the CPU CFS (Completely Fair Scheduler) quota.
CpuQuota string
// CPU shares (relative weight).
CpuShares string
// CPUs in which to allow execution (0-3, 0,1).
CpusetCpus string
// MEMs in which to allow execution (0-3, 0,1).
CpusetMems string
// Skip image verification.
DisableContentTrust bool
// Name of the Dockerfile (Default is `PATH/Dockerfile`).
File string
// Always remove intermediate containers.
ForceRm bool
// Print usage.
Help bool
// Write the image ID to the file.
Iidfile string
// Container isolation technology.
Isolation string
// Set metadata for an image.
Label []string
// Memory limit.
Memory string
// Swap limit equal to memory plus swap: -1 to enable unlimited swap.
MemorySwap string
// Set the networking mode for the RUN instructions during build.
Network string
// Do not use cache when building the image.
NoCache bool
// Set platform if server is multi-platform capable.
Platform string
// Always attempt to pull a newer version of the image.
Pull bool
// Suppress the build output and print image ID on success.
Quiet bool
// Remove intermediate containers after a successful build.
Rm bool
// Security options.
SecurityOpt string
// Size of `/dev/shm`.
ShmSize string
// Squash newly built layers into a single new layer.
Squash bool
// Name and optionally a tag in the `name:tag` format.
Tag []string
// Set the target build stage to build.
Target string
// Ulimit options.
Ulimit string
}
// Build an image from a Dockerfile.
func BuilderBuild(opts *BuilderBuildOpts, pathUrl string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"builder", "build"},
[]string{pathUrl},
opts,
0,
)
}
type BuilderPruneOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Remove all unused build cache, not just dangling ones.
All bool
// Provide filter values (e.g. `until=24h`).
Filter string
// Do not prompt for confirmation.
Force bool
// Print usage.
Help bool
// Amount of disk space to keep for cache.
KeepStorage string
}
// Remove build cache.
func BuilderPrune(opts *BuilderPruneOpts) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"builder", "prune"},
[]string{},
opts,
-1,
)
}