10 lines
258 B
Bash
10 lines
258 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
# ensure that data directory is owned by 'cloudron' user
|
||
|
chown -R cloudron:cloudron /app/data
|
||
|
|
||
|
echo "==> Starting supervisor"
|
||
|
exec /usr/bin/supervisord --configuration /etc/supervisor/supervisord.conf --nodaemon -i SupervisorExampleApp
|