Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -67,7 +67,7 @@ google.golang.org/grpc v1.3.0 |
| 67 | 67 |
# When updating, also update RUNC_COMMIT in hack/dockerfile/binaries-commits accordingly |
| 68 | 68 |
github.com/opencontainers/runc 0351df1c5a66838d0c392b4ac4cf9450de844e2d |
| 69 | 69 |
github.com/opencontainers/runtime-spec v1.0.0 |
| 70 |
-github.com/opencontainers/image-spec 372ad780f63454fbbbbcc7cf80e5b90245c13e13 |
|
| 70 |
+github.com/opencontainers/image-spec v1.0.0 |
|
| 71 | 71 |
github.com/seccomp/libseccomp-golang 32f571b70023028bd57d9288c20efbcb237f3ce0 |
| 72 | 72 |
|
| 73 | 73 |
# libcontainer deps (see src/github.com/opencontainers/runc/Godeps/Godeps.json) |
| ... | ... |
@@ -37,7 +37,7 @@ type ImageConfig struct {
|
| 37 | 37 |
// Cmd defines the default arguments to the entrypoint of the container. |
| 38 | 38 |
Cmd []string `json:"Cmd,omitempty"` |
| 39 | 39 |
|
| 40 |
- // Volumes is a set of directories which should be created as data volumes in a container running this image. |
|
| 40 |
+ // Volumes is a set of directories describing where the process is likely write data specific to a container instance. |
|
| 41 | 41 |
Volumes map[string]struct{} `json:"Volumes,omitempty"`
|
| 42 | 42 |
|
| 43 | 43 |
// WorkingDir sets the current working directory of the entrypoint process in the container. |