We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799911a commit f5103d3Copy full SHA for f5103d3
libcontainer/configs/mount.go
@@ -1,5 +1,11 @@
1
package configs
2
3
+const (
4
+ // EXT_COPYUP is a directive to copy up the contents of a directory when
5
+ // a tmpfs is mounted over it.
6
+ EXT_COPYUP = 1 << iota
7
+)
8
+
9
type Mount struct {
10
// Source path for the mount.
11
Source string `json:"source"`
@@ -22,6 +28,9 @@ type Mount struct {
22
28
// Relabel source if set, "z" indicates shared, "Z" indicates unshared.
23
29
Relabel string `json:"relabel"`
24
30
31
+ // Extensions are additional flags that are specific to runc.
32
+ Extensions int `json:"extensions"`
33
25
34
// Optional Command to be run before Source is mounted.
26
35
PremountCmds []Command `json:"premount_cmds"`
27
36
0 commit comments