...
1 package docker10
2
3
4
5
6
7
8
9
10
11
12
13
14 var map_DockerConfig = map[string]string{
15 "": "DockerConfig is the list of configuration options used when creating a container.",
16 }
17
18 func (DockerConfig) SwaggerDoc() map[string]string {
19 return map_DockerConfig
20 }
21
22 var map_DockerImage = map[string]string{
23 "": "DockerImage is the type representing a container image and its various properties when retrieved from the Docker client API.\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.",
24 }
25
26 func (DockerImage) SwaggerDoc() map[string]string {
27 return map_DockerImage
28 }
29
30
31
View as plain text