github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/container/mounts_unix.go (about) 1 // +build !windows 2 3 package container 4 5 // Mount contains information for a mount operation. 6 type Mount struct { 7 Source string `json:"source"` 8 Destination string `json:"destination"` 9 Writable bool `json:"writable"` 10 Data string `json:"data"` 11 Propagation string `json:"mountpropagation"` 12 }