From fc9b29972f1adfb37f3881d52e0ed2ffff2b2138 Mon Sep 17 00:00:00 2001 From: Kron4ek Date: Sun, 28 Mar 2021 19:45:18 +0500 Subject: [PATCH] Update README.md --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 63885f8..64bd372 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,12 @@ There are many more integrated programs. You can list all of them with: Let me know if you want something else to be included in the container. +There are some other features, see the internal help for more information. + +``` +./conty.sh --help +``` + ## Sandbox @@ -111,7 +117,8 @@ 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 and/or files you want with the **BIND** variable. And it's -also possible to disable network with the **DISABLE_NET**. For instance: +also possible to disable network with the **DISABLE_NET**. And you can set custom HOME directory +with the **HOME_DIR** variable. For instance: ``` export DISABLE_NET=1 @@ -119,6 +126,13 @@ export SANDBOX=1 export BIND="/home/username/.steam /home/username/.local/share/Steam" ./conty.sh steam ``` +Or +``` +export DISABLE_NET=1 +export SANDBOX=1 +export HOME_DIR="/home/username/custom_home_dir" +./conty.sh steam +``` ## How to create your own Conty executables