mounts_windows.go 256 B

12345678
  1. package container // import "github.com/docker/docker/container"
  2. // Mount contains information for a mount operation.
  3. type Mount struct {
  4. Source string `json:"source"`
  5. Destination string `json:"destination"`
  6. Writable bool `json:"writable"`
  7. }