mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 05:56:38 +01:00
10 lines
160 B
Bash
10 lines
160 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
export TASK_WORKERS=${TASK_WORKERS:=1}
|
|
|
|
exec supervisord -c /etc/supervisor/conf.d/supervisord.conf
|