6 lines
104 B
Bash
6 lines
104 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Starting supervisord..."
|
|
exec supervisord -c /etc/supervisor/supervisord.conf
|