Isolation: added "automount" option.
Now it's possible to disable default bind mounts of
languages by setting:
{
"isolation": {
"automount": {
"language_deps": false
}
}
}
In this case, the user is responsible to provide a "rootfs"
containing the language libraries and required files for
the application.
This commit is contained in:
11
src/nxt_fs.h
11
src/nxt_fs.h
@@ -44,11 +44,12 @@
|
||||
|
||||
|
||||
typedef struct {
|
||||
u_char *src;
|
||||
u_char *dst;
|
||||
u_char *fstype;
|
||||
nxt_int_t flags;
|
||||
u_char *data;
|
||||
u_char *src;
|
||||
u_char *dst;
|
||||
u_char *fstype;
|
||||
nxt_int_t flags;
|
||||
u_char *data;
|
||||
nxt_uint_t builtin; /* 1-bit */
|
||||
} nxt_fs_mount_t;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user