From d73e6e47f567e53bd97599d6e1eb76ee5f61c1ed Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 29 Sep 2018 19:10:58 -0400 Subject: [PATCH] Update docs about creating the docker container The `--cap-add=sys_nice` option allows IProcess.SetHighPriority() to not fail. Closes #751 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 76a3926e9f..e4cd2d0800 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ docker create \ --restart=always \ #if you want maximum uptime --network="host" \ #if your sql server is on the same machine --name="tgs" \ #or whatever else you wanna call it + --cap-add=sys_nice \ #allows tgs to schedule DreamDaemon as a higher priority process -p :80 \ -p 0.0.0.0:: \ -v /path/to/store/instances:/tgs4_instances \