
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
13 lines
405 B
Go
13 lines
405 B
Go
//go:build !windows
|
|
|
|
package container // import "github.com/docker/docker/container"
|
|
|
|
// Mount contains information for a mount operation.
|
|
type Mount struct {
|
|
Source string `json:"source"`
|
|
Destination string `json:"destination"`
|
|
Writable bool `json:"writable"`
|
|
Data string `json:"data"`
|
|
Propagation string `json:"mountpropagation"`
|
|
NonRecursive bool `json:"nonrecursive"`
|
|
}
|