summaryrefslogtreecommitdiff
path: root/container/mounts_windows.go
blob: 8f27e880671d98dbafa6a7309d065d3f66347603 (plain)
1
2
3
4
5
6
7
8
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"`
}