Files
hassio-addons/wger/rootfs/run.sh
2022-07-09 22:01:52 +02:00

17 lines
417 B
Bash

#!/bin/bashio
chmod +x /etc/cont-init.d/*
/./etc/cont-init.d/*
LOCATION=/data
python3 manage.py migrate || true
mkdir -p "$LOCATION"
touch "$LOCATION"/database.sqlite || true
chown -R wger "$LOCATION" || true
chmod -R 777 "$LOCATION" || true
rm /home/wger/db/database.sqlite &>/dev/null || true
ln -s "$LOCATION"/database.sqlite /home/wger/db
echo "Launch app"
su -c "/./home/wger/entrypoint.sh" -s /bin/bash wger