-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontainer_runtime.go
76 lines (67 loc) · 2.33 KB
/
container_runtime.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
package forge
import (
"context"
"io"
xslice "github.com/frantjc/x/slice"
"github.com/opencontainers/go-digest"
imagespecsv1 "github.com/opencontainers/image-spec/specs-go/v1"
)
type Mount struct {
Source string `json:"source,omitempty"`
Destination string `json:"destination,omitempty"`
}
func overrideMounts(oldMounts []Mount, newMounts ...Mount) []Mount {
return append(xslice.Filter(oldMounts, func(m Mount, _ int) bool {
return !xslice.Some(newMounts, func(n Mount, _ int) bool {
return m.Destination == n.Destination
})
}), newMounts...)
}
// ContainerConfig is the configuration that is used to
// create a container or an exec in a running container.
type ContainerConfig struct {
Entrypoint []string
Cmd []string
WorkingDir string
Env []string
User string
Privileged bool
Mounts []Mount
}
// Container represents a container created by a ContainerRuntime.
type Container interface {
GetID() string
CopyTo(context.Context, string, io.Reader) error
CopyFrom(context.Context, string) (io.ReadCloser, error)
Run(context.Context, *Streams) (int, error)
Start(context.Context) error
Restart(context.Context) error
Exec(context.Context, *ContainerConfig, *Streams) (int, error)
Stop(context.Context) error
Remove(context.Context) error
Kill(context.Context) error
}
// Image represents a image pulled by a ContainerRuntime.
// Used to create Containers from.
type Image interface {
Manifest() (*imagespecsv1.Manifest, error)
Config() (*imagespecsv1.ImageConfig, error)
Digest() (digest.Digest, error)
Blob() io.Reader
Name() string
}
// ContainerRuntime represents the functionality needed by Runnables
// to pull OCI images and run containers when being processed.
type ContainerRuntime interface {
GetContainer(context.Context, string) (Container, error)
CreateContainer(context.Context, Image, *ContainerConfig) (Container, error)
PullImage(context.Context, string) (Image, error)
Close() error
}
// ImageBuilder is for a ContainerRuntime to implement building a Dockerfile.
// Because building an OCI image is not ubiquitous, forge.ContainerRuntimes are
// not required to implement this, but they may. The default runtime (Docker)
// happens to so as to support GitHub Actions that run using "docker".
type ImageBuilder interface {
BuildDockerfile(context.Context, string, string) (Image, error)
}