Skip to content

Commit 9a8748c

Browse files
committed
Merge pull request #160 from mrunalp/cap_fix
Modify the capabilities constants to match header files like other constants
2 parents 6c4b37e + 663be9d commit 9a8748c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Additional information is needed for Linux over the [default spec configuration]
66
## Capabilities
77

88
Capabilities is an array that specifies Linux capabilities that can be provided to the process inside the container.
9-
Valid values are the string after `CAP_` for capabilities defined in [the man page](http://man7.org/linux/man-pages/man7/capabilities.7.html).
9+
Valid values are the strings for capabilities defined in [the man page](http://man7.org/linux/man-pages/man7/capabilities.7.html)
1010

1111
```json
1212
"capabilities": [
13-
"AUDIT_WRITE",
14-
"KILL",
15-
"NET_BIND_SERVICE"
13+
"CAP_AUDIT_WRITE",
14+
"CAP_KILL",
15+
"CAP_NET_BIND_SERVICE"
1616
]
1717
```
1818

0 commit comments

Comments
 (0)