Update README.md

This commit is contained in:
Kron4ek 2021-03-28 19:45:18 +05:00 committed by GitHub
parent 067bdb6085
commit fc9b29972f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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