Docker image which allows for easy configuration of multiple services using supervisord.
- add service configuration to /etc/supervisord.d
- service configuration file name should have the extension 'conf'
[program:my-app]
user=root
command=command-to-run.sh
redirect_stderr=true
stdout_logfile=/var/log/my-app.log
autorestart=true
startretries=3