From 45f7ada1bb62414ab5488910e30bb824cbb0f22b Mon Sep 17 00:00:00 2001 From: Amit Saha Date: Mon, 2 May 2016 00:10:56 +1000 Subject: [PATCH] config.md: args is an array of strings (#416) Signed-off-by: Amit Saha --- config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.md b/config.md index 47da513cc..5cd597ddc 100644 --- a/config.md +++ b/config.md @@ -88,7 +88,7 @@ See links for details about [mountvol](http://ss64.com/nt/mountvol.html) and [Se * **`terminal`** (bool, optional) specifies whether you want a terminal attached to that process. Defaults to false. * **`cwd`** (string, required) is the working directory that will be set for the executable. This value MUST be an absolute path. * **`env`** (array of strings, optional) contains a list of variables that will be set in the process's environment prior to execution. Elements in the array are specified as Strings in the form "KEY=value". The left hand side must consist solely of letters, digits, and underscores `_` as outlined in [IEEE Std 1003.1-2001](http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap08.html). -* **`args`** (string, required) executable to launch and any flags as an array. The executable is the first element and must be available at the given path inside of the rootfs. If the executable path is not an absolute path then the search $PATH is interpreted to find the executable. +* **`args`** (array of strings, required) executable to launch and any flags as an array. The executable is the first element and must be available at the given path inside of the rootfs. If the executable path is not an absolute path then the search $PATH is interpreted to find the executable. For Linux-based systems the process structure supports the following process specific fields: