Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Command ¶
Command represents a docker command, can be a string or an array of strings.
func (*Command) UnmarshalYAML ¶
UnmarshalYAML implements the Unmarshaller interface.
type MaporColonSlice ¶
type MaporColonSlice []string
MaporColonSlice represents a slice of strings that gets unmarshal from a YAML map into 'key:value' string.
func (*MaporColonSlice) UnmarshalYAML ¶
func (s *MaporColonSlice) UnmarshalYAML(tag string, value interface{}) error
UnmarshalYAML implements the Unmarshaller interface.
type MaporEqualSlice ¶
type MaporEqualSlice []string
MaporEqualSlice represents a slice of strings that gets unmarshal from a YAML map into 'key=value' string.
func (*MaporEqualSlice) UnmarshalYAML ¶
func (s *MaporEqualSlice) UnmarshalYAML(tag string, value interface{}) error
UnmarshalYAML implements the Unmarshaller interface.
type MaporSpaceSlice ¶
type MaporSpaceSlice []string
MaporSpaceSlice represents a slice of strings that gets unmarshal from a YAML map into 'key value' string.
func (*MaporSpaceSlice) UnmarshalYAML ¶
func (s *MaporSpaceSlice) UnmarshalYAML(tag string, value interface{}) error
UnmarshalYAML implements the Unmarshaller interface.
type SliceorMap ¶
SliceorMap represents a slice or a map of strings.
func (*SliceorMap) UnmarshalYAML ¶
func (s *SliceorMap) UnmarshalYAML(tag string, value interface{}) error
UnmarshalYAML implements the Unmarshaller interface.
type Stringorslice ¶
Stringorslice represents a string or an array of strings. Using engine-api Strslice and augment it with YAML marshalling stuff.
func (*Stringorslice) UnmarshalYAML ¶
func (s *Stringorslice) UnmarshalYAML(tag string, value interface{}) error
UnmarshalYAML implements the Unmarshaller interface.
type Ulimit ¶
type Ulimit struct { Name string // contains filtered or unexported fields }
Ulimit represents ulimit information.
func (Ulimit) MarshalYAML ¶
MarshalYAML implements the Marshaller interface.
type Ulimits ¶
type Ulimits struct {
Elements []Ulimit
}
Ulimits represents a list of Ulimit. It is, however, represented in yaml as keys (and thus map in Go)
func (Ulimits) MarshalYAML ¶
MarshalYAML implements the Marshaller interface.
func (*Ulimits) UnmarshalYAML ¶
UnmarshalYAML implements the Unmarshaller interface.