mirror of https://github.com/docker/docs.git
Merge pull request #20333 from rhatdan/mqueue
/dev/mqueue should never be mounted readonly
This commit is contained in:
commit
be5939f407
|
@ -104,7 +104,7 @@ func (d *Driver) createContainer(c *execdriver.Command, hooks execdriver.Hooks)
|
||||||
if container.Readonlyfs {
|
if container.Readonlyfs {
|
||||||
for i := range container.Mounts {
|
for i := range container.Mounts {
|
||||||
switch container.Mounts[i].Destination {
|
switch container.Mounts[i].Destination {
|
||||||
case "/proc", "/dev", "/dev/pts":
|
case "/proc", "/dev", "/dev/pts", "/dev/mqueue":
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
container.Mounts[i].Flags |= syscall.MS_RDONLY
|
container.Mounts[i].Flags |= syscall.MS_RDONLY
|
||||||
|
|
Loading…
Reference in New Issue