-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupervisord.conf
30 lines (25 loc) · 877 Bytes
/
supervisord.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
; For keeping all the pieces moving in Docker
[supervisord]
nodaemon = true
logfile = /FeTest/log/supervisord_docker.log
loglevel = info
[program:Xvfb]
command = Xvfb :98 -screen 0 1440x900x16
autorestart = true
[program:fileCatcher]
command = node /FeTest/fileCatcher/fileCatcher.js
stdout_logfile = /FeTest/log/fileCatcher.log
stderr_logfile = /FeTest/log/fileCatcher.log
autorestart = true
[program:testRunner]
command = /bin/bash /FeTest/tests/testRunner.sh
stdout_logfile = /FeTest/log/testRunner.log
stderr_logfile = /FeTest/log/testRunner.log
autostart = true
autorestart = true
[program:http-server-log]
command = http-server /FeTest/log -p 8091 -s -c-1
autorestart = true
[program:http-server-results]
command = http-server /FeTest/results -p 4242 -s -c-1
autorestart = true