You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/install/config/index.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,16 +63,23 @@ A complete config file with all available options can be found [here](https://gi
63
63
- process
64
64
```
65
65
66
-
### Install Path
66
+
### Runtime
67
67
68
-
- **`--install-path`**: Specifies the directory where Tracee will install or look for its resources. If not specified, the default installation directory is `/tmp/tracee`.
68
+
- **`--runtime` (`-g`)**: Controls runtime configurations for Tracee.
69
+
70
+
CLI Examples:
71
+
```bash
72
+
# Set working directory
73
+
tracee --runtime workdir=/opt/tracee
74
+
```
69
75
70
76
YAML:
71
77
```yaml
72
-
install-path: /opt/tracee
78
+
runtime:
79
+
- workdir=/opt/tracee
73
80
```
74
81
75
-
__NOTE__: This option is useful when running Tracee in environments where `/tmp` is not suitable or secure.
82
+
__NOTE__: The workdir is the path where Tracee will install or lookup its resources. The default is `/tmp/tracee`. This option is useful when running Tracee in environments where `/tmp` is not suitable or secure.
0 commit comments