Merge pull request #14639 from calavera/fix_read_write_check

Fix read-write check for volumes.
This commit is contained in:
Jessie Frazelle 2015-07-14 16:36:01 -07:00
commit 8c7cd78650
2 changed files with 6 additions and 1 deletions

View File

@ -172,7 +172,7 @@ func (daemon *Daemon) registerMountPoints(container *Container, hostConfig *runc
cp := &mountPoint{
Name: m.Name,
Source: m.Source,
RW: m.RW && !roModes[mode],
RW: m.RW && volume.ReadWrite(mode),
Driver: m.Driver,
Destination: m.Destination,
}

View File

@ -50,3 +50,8 @@ var roModes = map[string]bool{
func ValidateMountMode(mode string) (bool, bool) {
return roModes[mode] || rwModes[mode], rwModes[mode]
}
// ReadOnly tells you if a mode string is a valid read-only mode or not.
func ReadWrite(mode string) bool {
return rwModes[mode]
}