2017-02-11 21:46:41 +00:00
|
|
|
[supervisord]
|
|
|
|
nodaemon=true
|
|
|
|
logfile=%(ENV_LOG_PATH)s/supervisord.log
|
|
|
|
childlogdir=%(ENV_LOG_PATH)s
|
|
|
|
|
|
|
|
[program:xvfb]
|
|
|
|
command=/usr/bin/Xvfb %(ENV_DISPLAY)s -screen %(ENV_SCREEN)s %(ENV_SCREEN_WIDTH)sx%(ENV_SCREEN_HEIGHT)sx%(ENV_SCREEN_DEPTH)s
|
2017-03-28 11:31:14 +01:00
|
|
|
stdout_logfile=%(ENV_LOG_PATH)s/xvfb.stdout.log
|
|
|
|
stderr_logfile=%(ENV_LOG_PATH)s/xvfb.stderr.log
|
2017-02-11 21:46:41 +00:00
|
|
|
|
|
|
|
[program:openbox]
|
|
|
|
command=/usr/bin/openbox-session
|
2017-03-28 11:31:14 +01:00
|
|
|
stdout_logfile=%(ENV_LOG_PATH)s/openbox.stdout.log
|
|
|
|
stderr_logfile=%(ENV_LOG_PATH)s/openbox.stderr.log
|
2017-02-11 21:46:41 +00:00
|
|
|
|
|
|
|
[program:x11vnc]
|
2017-04-06 09:29:27 +01:00
|
|
|
command=/usr/bin/x11vnc -display %(ENV_DISPLAY)s -nopw -forever -shared
|
2017-03-28 11:31:14 +01:00
|
|
|
stdout_logfile=%(ENV_LOG_PATH)s/x11vnc.stdout.log
|
|
|
|
stderr_logfile=%(ENV_LOG_PATH)s/x11vnc.stderr.log
|
2017-02-11 21:46:41 +00:00
|
|
|
|
|
|
|
[program:novnc]
|
|
|
|
command=./noVNC/utils/launch.sh --vnc localhost:%(ENV_LOCAL_PORT)s --listen %(ENV_TARGET_PORT)s
|
2017-03-28 11:31:14 +01:00
|
|
|
stdout_logfile=%(ENV_LOG_PATH)s/novnc.stdout.log
|
|
|
|
stderr_logfile=%(ENV_LOG_PATH)s/novnc.stderr.log
|
2017-02-11 21:46:41 +00:00
|
|
|
|
2017-04-12 13:25:12 +01:00
|
|
|
[program:port-forward]
|
|
|
|
command=./src/port_forward.sh
|
|
|
|
autorestart=false
|
|
|
|
|
2017-02-11 21:46:41 +00:00
|
|
|
[program:docker-appium]
|
2017-03-27 11:45:21 +01:00
|
|
|
command=python3 -m src.app
|
2017-02-28 14:36:43 +00:00
|
|
|
autorestart=false
|
2017-03-28 11:31:14 +01:00
|
|
|
stdout_logfile=%(ENV_LOG_PATH)s/docker-appium.stdout.log
|
|
|
|
stderr_logfile=%(ENV_LOG_PATH)s/docker-appium.stderr.log
|