docker-android/supervisord.conf

72 lines
2 KiB
Plaintext
Raw Normal View History

2017-02-11 21:46:41 +00:00
[supervisord]
nodaemon=true
logfile=%(ENV_LOG_PATH)s/supervisord.log
childlogdir=%(ENV_LOG_PATH)s
priority=1
2017-02-11 21:46:41 +00:00
[program:xvfb]
2017-10-27 19:59:19 +01:00
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
priority=1
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
priority=2
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
priority=2
autorestart=true
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
priority=2
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
priority=1
2017-07-13 17:55:32 +01:00
;startsecs to fix "not expected" error. see: https://github.com/Supervisor/supervisor/issues/212#issuecomment-47933372
2019-09-06 13:11:06 +01:00
[program:screen-copy]
command=./src/scrcpy.sh
2019-09-16 10:56:48 +01:00
autorestart=false
2019-09-06 13:11:06 +01:00
stdout_logfile=%(ENV_LOG_PATH)s/screen-copy.stdout.log
stderr_logfile=%(ENV_LOG_PATH)s/screen-copy.stderr.log
priority=3
2017-04-12 13:25:12 +01:00
2019-07-10 08:36:18 +01:00
[program:atd]
command=./src/atd.sh
autorestart=false
stdout_logfile=%(ENV_LOG_PATH)s/atd.stdout.log
stderr_logfile=%(ENV_LOG_PATH)s/atd.stderr.log
priority=4
2017-02-11 21:46:41 +00:00
[program:docker-appium]
command=./src/appium.sh
2017-02-28 14:36:43 +00:00
autorestart=false
2017-04-26 13:19:46 +01:00
stdout_logfile=%(ENV_LOG_PATH)s/docker-android.stdout.log
stderr_logfile=%(ENV_LOG_PATH)s/docker-android.stderr.log
priority=4
2017-07-14 19:40:14 +01:00
[program:auto-recording]
2017-10-27 19:59:19 +01:00
command=./src/record.sh auto_record
2017-07-14 19:40:14 +01:00
autorestart=false
stdout_logfile=%(ENV_LOG_PATH)s/video-recording.stdout.log
stderr_logfile=%(ENV_LOG_PATH)s/video-recording.stderr.log
priority=4
[program:adb-utils]
command=./src/utils.sh
autorestart=false
stdout_logfile=%(ENV_LOG_PATH)s/adb-utils.stdout.log
stderr_logfile=%(ENV_LOG_PATH)s/adb-utils.stderr.log
priority=5