mounts_unix.go 309 B

123456789101112
  1. // +build !windows
  2. package container
  3. // Mount contains information for a mount operation.
  4. type Mount struct {
  5. Source string `json:"source"`
  6. Destination string `json:"destination"`
  7. Writable bool `json:"writable"`
  8. Data string `json:"data"`
  9. Propagation string `json:"mountpropagation"`
  10. }