2021-08-23 09:14:53 -04:00
|
|
|
//go:build !windows
|
2016-03-18 14:50:19 -04:00
|
|
|
// +build !windows
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package container // import "github.com/docker/docker/container"
|
2016-03-18 14:50:19 -04:00
|
|
|
|
|
|
|
// Mount contains information for a mount operation.
|
|
|
|
type Mount struct {
|
2018-10-10 06:20:13 -04: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 14:50:19 -04:00
|
|
|
}
|