2021-08-23 13:14:53 +00:00
|
|
|
//go:build !windows
|
2016-03-18 18:50:19 +00:00
|
|
|
// +build !windows
|
|
|
|
|
2018-02-05 21:05:59 +00:00
|
|
|
package container // import "github.com/docker/docker/container"
|
2016-03-18 18:50:19 +00:00
|
|
|
|
|
|
|
// Mount contains information for a mount operation.
|
|
|
|
type Mount struct {
|
2018-10-10 10:20:13 +00:00
|
|
|
Source string `json:"source"`
|
|
|
|
Destination string `json:"destination"`
|
|
|
|
Writable bool `json:"writable"`
|
|
|
|
Data string `json:"data"`
|
|
|
|
Propagation string `json:"mountpropagation"`
|
|
|
|
NonRecursive bool `json:"nonrecursive"`
|
2016-03-18 18:50:19 +00:00
|
|
|
}
|