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