github.com/marunai/moby@v1.13.1/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  }