forked from nanobox-io/golang-docker-client
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontainer.go
231 lines (200 loc) · 6.58 KB
/
container.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package docker
import (
"strings"
"time"
"golang.org/x/net/context"
dockType "github.com/docker/engine-api/types"
dockContainer "github.com/docker/engine-api/types/container"
dockNetwork "github.com/docker/engine-api/types/network"
"github.com/docker/engine-api/types/strslice"
"github.com/docker/go-connections/nat"
)
type ContainerConfig struct {
ID string `json:"id"`
Network string `json:"network"`
NetName string `json:"networkname"`
Name string `json:"name"`
Labels map[string]string `json:"labels"`
Hostname string `json:"hostname"`
Domainname string `json:"domainname"`
Cmd []string `json:"cmd"`
Env []string `json:"env"`
Image string `json:"image_slug"`
IP string `json:"ip"`
Binds []string `json:"binds"`
Memory int64 `json:"memory"`
MemorySwap int64 `json:"memory_swap"`
Status string `json:"status"`
CPUShares int64 `json:"cpu_shares"`
RestartPolicy string `json:"restart_policy"`
RestartAttempts int `json:"restart_attempts"`
Ports []string `json:"ports"`
}
// create a container from the user specification
func CreateContainer(conf ContainerConfig) (dockType.ContainerJSON, error) {
// if len(conf.Cmd) == 0 {
// conf.Cmd = []string{"/bin/sleep", "3650d"}
// }
ports, portBindings, _ := nat.ParsePortSpecs(conf.Ports)
// create a configurable restart policy with a default 'unless stopped' behavior
restartPolicy := dockContainer.RestartPolicy{Name: "unless-stopped"}
switch conf.RestartPolicy {
case "no", "", "always", "on-failure":
restartPolicy = dockContainer.RestartPolicy{
Name: conf.RestartPolicy,
MaximumRetryCount: conf.RestartAttempts,
}
}
config := &dockContainer.Config{
Hostname: conf.Hostname,
Domainname: conf.Domainname,
Cmd: conf.Cmd,
Env: conf.Env,
Labels: conf.Labels,
NetworkDisabled: false,
Image: conf.Image,
ExposedPorts: ports,
}
hostConfig := &dockContainer.HostConfig{
Privileged: true,
Binds: conf.Binds,
// NetworkMode: "host",
CapAdd: strslice.StrSlice([]string{"NET_ADMIN"}),
NetworkMode: "bridge",
RestartPolicy: restartPolicy,
Resources: dockContainer.Resources{
Memory: conf.Memory,
MemorySwap: conf.MemorySwap,
CPUShares: conf.CPUShares,
},
PortBindings: portBindings,
}
netConfig := &dockNetwork.NetworkingConfig{}
if conf.Network == "host" {
// you cant set the hostname of the host
hostConfig.NetworkMode = "host"
config.Hostname = ""
}
if conf.Network == "virt" || conf.IP != "" {
// allow for using a different network name
netName := ""
if conf.NetName == "" {
netName = "microbox"
} else {
netName = conf.NetName
}
hostConfig.NetworkMode = dockContainer.NetworkMode(netName)
netConfig.EndpointsConfig = map[string]*dockNetwork.EndpointSettings{
netName: {
IPAMConfig: &dockNetwork.EndpointIPAMConfig{IPv4Address: conf.IP},
},
}
}
return createContainer(config, hostConfig, netConfig, conf.Name)
}
// createContainer
func createContainer(config *dockContainer.Config, hostConfig *dockContainer.HostConfig, networkingConfig *dockNetwork.NetworkingConfig, containerName string) (dockType.ContainerJSON, error) {
// create container
container, err := client.ContainerCreate(context.Background(), config, hostConfig, networkingConfig, containerName)
if err != nil {
return dockType.ContainerJSON{}, err
}
if err := ContainerStart(container.ID); err != nil {
return dockType.ContainerJSON{}, err
}
return ContainerInspect(container.ID)
}
// Start a container. If the container is already running this will error.
func ContainerStart(id string) error {
return client.ContainerStart(context.Background(), id, dockType.ContainerStartOptions{})
}
// give them 5 seconds.. todo maybe make it adjustable
func ContainerStop(id string) error {
timeout := 5 * time.Second
return client.ContainerStop(context.Background(), id, &timeout)
}
// ContainerRemove
func ContainerRemove(id string) error {
_, err := client.ContainerInspect(context.Background(), id)
if err != nil {
return err
}
// timeout := 0 * time.Second
// if err := client.ContainerStop(context.Background(), id, &timeout); err != nil {
// return err
// }
return client.ContainerRemove(context.Background(), id, dockType.ContainerRemoveOptions{RemoveVolumes: true, Force: true})
}
// ContainerInspect
func ContainerInspect(id string) (dockType.ContainerJSON, error) {
return client.ContainerInspect(context.Background(), id)
}
// GetContainer
func GetContainer(name string) (dockType.ContainerJSON, error) {
return client.ContainerInspect(context.Background(), name)
}
// ContainerList
func ContainerList() ([]dockType.Container, error) {
return client.ContainerList(context.Background(), dockType.ContainerListOptions{All: true, Size: false})
}
func ContainerJSONtoConfig(cj dockType.ContainerJSON) ContainerConfig {
return ContainerConfig{
ID: cj.ID,
Network: string(cj.HostConfig.NetworkMode),
Name: strings.Replace(cj.Name, "/", "", 1),
Hostname: cj.Config.Hostname,
Domainname: cj.Config.Domainname,
Labels: cj.Config.Labels,
Cmd: []string(cj.Config.Cmd),
Image: cj.Config.Image,
IP: GetIP(cj),
Memory: cj.HostConfig.Resources.Memory,
MemorySwap: cj.HostConfig.Resources.MemorySwap,
Status: cj.State.Status,
CPUShares: cj.HostConfig.Resources.CPUShares,
}
}
func ContainerSliceToConfigSlice(cs []dockType.Container) []ContainerConfig {
cslice := []ContainerConfig{}
for _, c := range cs {
name := ""
if len(c.Names) >= 1 {
name = c.Names[0]
}
cslice = append(cslice, ContainerConfig{
ID: c.ID,
Network: c.HostConfig.NetworkMode,
Name: strings.Replace(name, "/", "", 1),
Image: c.Image,
Status: c.Status,
Labels: c.Labels,
IP: GetIP(cs),
})
}
return cslice
}
func GetIP(i interface{}) (ip string) {
switch c := i.(type) {
default:
case dockType.Container:
if c.NetworkSettings != nil {
for _, val := range c.NetworkSettings.Networks {
if val.IPAddress != "" {
ip = val.IPAddress
break
}
}
}
case dockType.ContainerJSON:
ip = c.NetworkSettings.IPAddress
if ip == "" {
for _, val := range c.NetworkSettings.Networks {
if val.IPAddress != "" {
ip = val.IPAddress
break
}
}
}
}
return
}