Skip to content

Commit 7d54664

Browse files
author
David Thompson
committed
spec: Fix errors in file system mount points table.
"shm" is not a valid file system type, and there must be an "=" between "gid" and "5" in the devpts options. Signed-off-by: David Thompson <[email protected]>
1 parent 3d47519 commit 7d54664

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

SPEC.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ unmount all the mounts that were setup within that namespace.
4747
For a container to execute properly there are certain filesystems that
4848
are required to be mounted within the rootfs that the runtime will setup.
4949

50-
| Path | Type | Flags | Data |
51-
| ----------- | ------ | -------------------------------------- | --------------------------------------- |
52-
| /proc | proc | MS_NOEXEC,MS_NOSUID,MS_NODEV | |
53-
| /dev | tmpfs | MS_NOEXEC,MS_STRICTATIME | mode=755 |
54-
| /dev/shm | shm | MS_NOEXEC,MS_NOSUID,MS_NODEV | mode=1777,size=65536k |
55-
| /dev/mqueue | mqueue | MS_NOEXEC,MS_NOSUID,MS_NODEV | |
56-
| /dev/pts | devpts | MS_NOEXEC,MS_NOSUID | newinstance,ptmxmode=0666,mode=620,gid5 |
57-
| /sys | sysfs | MS_NOEXEC,MS_NOSUID,MS_NODEV,MS_RDONLY | |
50+
| Path | Type | Flags | Data |
51+
| ----------- | ------ | -------------------------------------- | ---------------------------------------- |
52+
| /proc | proc | MS_NOEXEC,MS_NOSUID,MS_NODEV | |
53+
| /dev | tmpfs | MS_NOEXEC,MS_STRICTATIME | mode=755 |
54+
| /dev/shm | tmpfs | MS_NOEXEC,MS_NOSUID,MS_NODEV | mode=1777,size=65536k |
55+
| /dev/mqueue | mqueue | MS_NOEXEC,MS_NOSUID,MS_NODEV | |
56+
| /dev/pts | devpts | MS_NOEXEC,MS_NOSUID | newinstance,ptmxmode=0666,mode=620,gid=5 |
57+
| /sys | sysfs | MS_NOEXEC,MS_NOSUID,MS_NODEV,MS_RDONLY | |
5858

5959

6060
After a container's filesystems are mounted within the newly created

0 commit comments

Comments
 (0)