From 084c1dbb4025110e2181ae6a00ab0ef59f764f5d Mon Sep 17 00:00:00 2001 From: Kron4ek Date: Sat, 27 Mar 2021 15:33:17 +0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe2da44..ccfe500 100644 --- a/README.md +++ b/README.md @@ -90,13 +90,13 @@ Conty uses bubblewrap and thus supports filesystem sandboxing. By default it's disabled and all directories on your system are available for the container. You can enable sandboxing with the **SANDBOX** environment variable. You can allow -access to directories you want with the **WHITELIST_DIRS** variable. And it's +access to directories and/or files you want with the **BIND** variable. And it's also possible to disable network with the **DISABLE_NET**. For instance: ``` export DISABLE_NET=1 export SANDBOX=1 -export WHITELIST_DIRS="/home/username/.steam /home/username/.local/share/Steam" +export BIND="/home/username/.steam /home/username/.local/share/Steam" ./conty.sh steam ```