...
1 package dockerpre012
2
3
4
5
6
7
8
9
10
11
12
13
14 var map_Config = map[string]string{
15 "": "Config is the list of configuration options used when creating a container. Config does not contain the options that are specific to starting a container on a given host. Those are contained in HostConfig Exists only for legacy conversion, copy of type from fsouza/go-dockerclient",
16 }
17
18 func (Config) SwaggerDoc() map[string]string {
19 return map_Config
20 }
21
22 var map_DockerConfig = map[string]string{
23 "": "DockerConfig is the list of configuration options used when creating a container.",
24 "Labels": "This field is not supported in pre012 and will always be empty.",
25 }
26
27 func (DockerConfig) SwaggerDoc() map[string]string {
28 return map_DockerConfig
29 }
30
31 var map_DockerImage = map[string]string{
32 "": "DockerImage is for earlier versions of the Docker API (pre-012 to be specific). It is also the version of metadata that the container image registry uses to persist metadata.\n\nCompatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support.",
33 }
34
35 func (DockerImage) SwaggerDoc() map[string]string {
36 return map_DockerImage
37 }
38
39 var map_ImagePre012 = map[string]string{
40 "": "ImagePre012 serves the same purpose as the Image type except that it is for earlier versions of the Docker API (pre-012 to be specific) Exists only for legacy conversion, copy of type from fsouza/go-dockerclient",
41 }
42
43 func (ImagePre012) SwaggerDoc() map[string]string {
44 return map_ImagePre012
45 }
46
47 var map_Mount = map[string]string{
48 "": "Mount represents a mount point in the container.\n\nIt has been added in the version 1.20 of the Docker API, available since Docker 1.8. Exists only for legacy conversion, copy of type from fsouza/go-dockerclient",
49 }
50
51 func (Mount) SwaggerDoc() map[string]string {
52 return map_Mount
53 }
54
55
56
View as plain text