Increase default memlock ulimit

Fix #610

Users can override, but the default is low.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2016-10-14 11:27:45 +01:00
parent b76f5cb408
commit 3cead2d813

View File

@ -107,6 +107,8 @@ start()
# set ulimits as high as possible
ulimit -n 1048576
ulimit -p unlimited
# set locked memory higher for varnish
ulimit -l 82000
DOCKER_LOGFILE="/var/log/docker.log"