local-llm-server/other/vllm/Docker/supervisord.conf

32 lines
1011 B
Plaintext
Raw Normal View History

2023-09-26 14:48:34 -06:00
[supervisord]
nodaemon=true
2023-09-27 16:58:49 -06:00
[program:vllm]
2023-09-27 17:00:46 -06:00
command=/bin/bash -c 'bash /app/start-vllm.sh 2>&1 | tee -a /var/log/app/vllm.log'
2023-09-26 14:48:34 -06:00
autostart=true
autorestart=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
stderr_logfile=/dev/fd/2
stderr_logfile_maxbytes=0
user=apiserver
environment=HOME="/home/apiserver",USER="apiserver"
2023-09-27 16:12:36 -06:00
[program:rathole]
2023-09-27 17:00:46 -06:00
command=/bin/bash -c 'app/rathole -c /app/client.toml 2>&1 | tee -a /var/log/app/rathole.log'
2023-09-26 14:48:34 -06:00
autostart=true
autorestart=true
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
stderr_logfile=/dev/fd/2
stderr_logfile_maxbytes=0
user=apiserver
environment=HOME="/home/apiserver",USER="apiserver"
[program:jupyter]
2023-09-26 21:45:13 -06:00
command=/jupyterlab/bin/jupyter lab --allow-root --ip=0.0.0.0 --no-browser --ServerApp.trust_xheaders=True --ServerApp.disable_check_xsrf=False --ServerApp.allow_remote_access=True --ServerApp.allow_origin='*' --ServerApp.allow_credentials=True
environment=JUPYTER_CONFIG_DIR="/app/jupyter",SHELL="/bin/bash"
[program:ssh]
2023-09-27 16:57:14 -06:00
command=/usr/sbin/sshd -D