2024-11-05 11:04:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-11-05 16:14:12 +00:00
|
|
|
echo "==> Symlink the config.yml to the editable /app/data directory"
|
|
|
|
ln -s /app/config.yml /app/data/config.yml
|
|
|
|
|
2024-11-05 16:17:56 +00:00
|
|
|
echo "==> Changing ownership"
|
|
|
|
chown -R cloudron:cloudron /app/data
|
|
|
|
|
2024-11-05 11:35:03 +00:00
|
|
|
echo "==> Starting Blossom"
|
2024-11-05 11:04:03 +00:00
|
|
|
exec /usr/local/bin/gosu cloudron:cloudron node /app
|