Upload 5 files
Browse files- entrypoint.sh +2 -0
- supervisord.conf +1 -1
entrypoint.sh
CHANGED
|
@@ -11,6 +11,8 @@ set -eu
|
|
| 11 |
export RUNTIME_DIR
|
| 12 |
export SUPERVISOR_CONF
|
| 13 |
|
|
|
|
|
|
|
| 14 |
shell_quote() {
|
| 15 |
printf "'%s'" "$(printf '%s' "$1" | sed "s/'/'\"'\"'/g")"
|
| 16 |
}
|
|
|
|
| 11 |
export RUNTIME_DIR
|
| 12 |
export SUPERVISOR_CONF
|
| 13 |
|
| 14 |
+
ulimit -n 65535
|
| 15 |
+
|
| 16 |
shell_quote() {
|
| 17 |
printf "'%s'" "$(printf '%s' "$1" | sed "s/'/'\"'\"'/g")"
|
| 18 |
}
|
supervisord.conf
CHANGED
|
@@ -7,7 +7,7 @@ nodaemon=true
|
|
| 7 |
pidfile=%(ENV_RUNTIME_DIR)s/supervisord.pid
|
| 8 |
logfile=%(ENV_RUNTIME_DIR)s/supervisord.log
|
| 9 |
logfile_maxbytes=0
|
| 10 |
-
minfds=
|
| 11 |
|
| 12 |
[rpcinterface:supervisor]
|
| 13 |
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
| 7 |
pidfile=%(ENV_RUNTIME_DIR)s/supervisord.pid
|
| 8 |
logfile=%(ENV_RUNTIME_DIR)s/supervisord.log
|
| 9 |
logfile_maxbytes=0
|
| 10 |
+
minfds=65535
|
| 11 |
|
| 12 |
[rpcinterface:supervisor]
|
| 13 |
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
|