@@ -25,11 +25,11 @@ import (
25
25
)
26
26
27
27
// SpecOpts sets spec specific information to a newly generated OCI spec
28
- type SpecOpts func (context.Context , Client , * containers.Container , * specs. Spec ) error
28
+ type SpecOpts func (context.Context , Client , * containers.Container , * Spec ) error
29
29
30
30
// Compose converts a sequence of spec operations into a single operation
31
31
func Compose (opts ... SpecOpts ) SpecOpts {
32
- return func (ctx context.Context , client Client , c * containers.Container , s * specs. Spec ) error {
32
+ return func (ctx context.Context , client Client , c * containers.Container , s * Spec ) error {
33
33
for _ , o := range opts {
34
34
if err := o (ctx , client , c , s ); err != nil {
35
35
return err
@@ -40,15 +40,15 @@ func Compose(opts ...SpecOpts) SpecOpts {
40
40
}
41
41
42
42
// setProcess sets Process to empty if unset
43
- func setProcess (s * specs. Spec ) {
43
+ func setProcess (s * Spec ) {
44
44
if s .Process == nil {
45
45
s .Process = & specs.Process {}
46
46
}
47
47
}
48
48
49
49
// WithProcessArgs replaces the args on the generated spec
50
50
func WithProcessArgs (args ... string ) SpecOpts {
51
- return func (_ context.Context , _ Client , _ * containers.Container , s * specs. Spec ) error {
51
+ return func (_ context.Context , _ Client , _ * containers.Container , s * Spec ) error {
52
52
setProcess (s )
53
53
s .Process .Args = args
54
54
return nil
@@ -57,7 +57,7 @@ func WithProcessArgs(args ...string) SpecOpts {
57
57
58
58
// WithProcessCwd replaces the current working directory on the generated spec
59
59
func WithProcessCwd (cwd string ) SpecOpts {
60
- return func (_ context.Context , _ Client , _ * containers.Container , s * specs. Spec ) error {
60
+ return func (_ context.Context , _ Client , _ * containers.Container , s * Spec ) error {
61
61
setProcess (s )
62
62
s .Process .Cwd = cwd
63
63
return nil
@@ -66,15 +66,15 @@ func WithProcessCwd(cwd string) SpecOpts {
66
66
67
67
// WithHostname sets the container's hostname
68
68
func WithHostname (name string ) SpecOpts {
69
- return func (_ context.Context , _ Client , _ * containers.Container , s * specs. Spec ) error {
69
+ return func (_ context.Context , _ Client , _ * containers.Container , s * Spec ) error {
70
70
s .Hostname = name
71
71
return nil
72
72
}
73
73
}
74
74
75
75
// WithEnv appends environment variables
76
76
func WithEnv (environmentVariables []string ) SpecOpts {
77
- return func (_ context.Context , _ Client , _ * containers.Container , s * specs. Spec ) error {
77
+ return func (_ context.Context , _ Client , _ * containers.Container , s * Spec ) error {
78
78
if len (environmentVariables ) > 0 {
79
79
setProcess (s )
80
80
s .Process .Env = replaceOrAppendEnvValues (s .Process .Env , environmentVariables )
@@ -85,7 +85,7 @@ func WithEnv(environmentVariables []string) SpecOpts {
85
85
86
86
// WithMounts appends mounts
87
87
func WithMounts (mounts []specs.Mount ) SpecOpts {
88
- return func (_ context.Context , _ Client , _ * containers.Container , s * specs. Spec ) error {
88
+ return func (_ context.Context , _ Client , _ * containers.Container , s * Spec ) error {
89
89
s .Mounts = append (s .Mounts , mounts ... )
90
90
return nil
91
91
}
0 commit comments