Stixx
077f388cd0
All checks were successful
Release to Gitea Container Registry / build_and_push (push) Successful in 13s
14 lines
310 B
Bash
14 lines
310 B
Bash
#!/bin/bash
|
|
|
|
echo "==> Copy config"
|
|
cp config.example.yml /app/data/config.yml
|
|
|
|
echo "==> Changing ownership"
|
|
chown -R cloudron:cloudron /app/data
|
|
|
|
echo "==> Set BLOSSOM_CONFIG path to env"
|
|
export BLOSSOM_CONFIG=data/config.yml
|
|
|
|
echo "==> Starting Blossom"
|
|
exec /usr/local/bin/gosu cloudron:cloudron node /app
|