-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker.go
103 lines (87 loc) · 1.62 KB
/
docker.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
package easy_docker
import (
"fmt"
"strings"
)
type PsItem struct {
ContainerID string `json:"container_id"`
Image string `json:"image"`
Names string `json:"names"`
}
func Ps() ([]PsItem, error) {
var resp []PsItem
ps, err := command("docker ps")
if err != nil {
return nil, err
}
for i, v := range ps {
if i == 0 {
continue
}
split := strings.Split(v, " ")
csi := make([]string, 0)
for _, v := range split {
if v != "" {
csi = append(csi, v)
}
}
resp = append(resp, PsItem{
ContainerID: csi[0],
Image: csi[1],
Names: csi[len(csi)-1],
})
}
return resp, nil
}
type Image struct {
Pepository string `json:"pepository"`
Tag string `json:"tag"`
ImageID string `json:"image_id"`
}
func Images() ([]Image, error) {
is, err := command("docker images")
if err != nil {
return nil, err
}
var resp []Image
for i, v := range is {
if i == 0 {
continue
}
split := strings.Split(v, " ")
csi := make([]string, 0)
for _, v := range split {
if v != "" {
csi = append(csi, v)
}
}
resp = append(resp, Image{
Pepository: csi[0],
Tag: csi[1],
ImageID: csi[2],
})
}
return resp, nil
}
// Stop ik: docker name or docker id
func Stop(ik string) error {
_, err := command(fmt.Sprintf("docker stop %s", ik))
if err != nil {
return err
}
return nil
}
func Rm(ik string) error {
_, err := command(fmt.Sprintf("docker rm -f %s", ik))
if err != nil {
return err
}
return nil
}
func Restart(ik string) error {
_, err := command(fmt.Sprintf("docker restart %s", ik))
if err != nil {
return err
}
return nil
}