mirror of
https://github.com/Kron4ek/Conty
synced 2024-12-26 09:58:38 +01:00
Update README.md
This commit is contained in:
parent
067bdb6085
commit
fc9b29972f
1 changed files with 15 additions and 1 deletions
16
README.md
16
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue