All checks were successful
continuous-integration/drone/push Build is passing
42 lines
918 B
Plaintext
42 lines
918 B
Plaintext
[unix_http_server]
|
|
file = /tmp/supervisor.sock
|
|
username = dummy
|
|
password = dummy
|
|
|
|
[supervisord]
|
|
user = root
|
|
logfile = /var/log/supervisord.log
|
|
logfile_maxbytes = 50MB
|
|
logfile_backups = 10
|
|
loglevel = info
|
|
pidfile = /tmp/supervisord.pid
|
|
nodaemon = true
|
|
minfds = 1024
|
|
minprocs = 200
|
|
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[supervisorctl]
|
|
serverurl = unix:///tmp/supervisor.sock
|
|
username = dummy
|
|
password = dummy
|
|
|
|
[program:ssh]
|
|
command = /usr/sbin/sshd -D
|
|
|
|
[program:containerd]
|
|
command = /usr/bin/containerd
|
|
autostart = %(ENV_RUN_DOCKER)s
|
|
|
|
[program:dockerd]
|
|
command = /usr/bin/dockerd --containerd=/run/containerd/containerd.sock
|
|
autostart = %(ENV_RUN_DOCKER)s
|
|
|
|
#[program:code]
|
|
#command = /usr/bin/code serve-web --host 0.0.0.0 --port 80
|
|
#redirect_stderr = true
|
|
#stdout_logfile = /dev/stdout
|
|
#stdout_logfile_maxbytes = 0
|
|
#user = %(ENV_CODE_USERNAME)s
|