8 lines
161 B
Bash
8 lines
161 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "==> Changing ownership"
|
||
|
chown -R cloudron:cloudron /app/data
|
||
|
|
||
|
echo "==> Starting strfry"
|
||
|
exec /usr/local/bin/gosu cloudron:cloudron node /app
|