Skip to content

Commit

Permalink
[docker-database]: Start rsyslogd to allow supervisor to log to syslog (
Browse files Browse the repository at this point in the history
  • Loading branch information
jleveque authored Aug 15, 2017
1 parent f938f3e commit 3a8f5be
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions dockers/docker-database/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,26 @@ logfile_maxbytes=1MB
logfile_backups=2
nodaemon=true

[program:rsyslogd]
command=/usr/sbin/rsyslogd -n
priority=1
autostart=true
autorestart=false
stdout_logfile=syslog
stderr_logfile=syslog

[program:redis-server]
command=/usr/bin/redis-server /etc/redis/redis.conf
priority=1
priority=2
autostart=true
autorestart=false
stdout_logfile=syslog
stderr_logfile=syslog

[program:configdb-load.sh]
command=/usr/bin/configdb-load.sh
priority=2
priority=3
autostart=true
autorestart=false
stdout_logfile=syslog
stderr_logfile=syslog

0 comments on commit 3a8f5be

Please sign in to comment.