You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/docker/option.go

31 lines
631 B

package docker
// GetOpts - iterate the inbound Options and return a struct.
func GetOpts(opt ...Option) Options {
opts := getDefaultOptions()
for _, o := range opt {
o(&opts)
}
return opts
}
// Option - how Options are passed as arguments.
type Option func(*Options)
// Options - how Options are represented.
type Options struct {
withContainerImage string
}
func getDefaultOptions() Options {
return Options{}
}
// WithContainerImage tells the command which container image
// to start a dev database with
func WithContainerImage(image string) Option {
return func(o *Options) {
o.withContainerImage = image
}
}