8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f /etc/supervisord.conf.tpl ]; then
|
|
envsubst < /etc/supervisord.conf.tpl > /etc/supervisord.conf
|
|
fi
|
|
|
|
exec "$@"
|