mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-21 16:21:51 +02:00
Create run.sh
This commit is contained in:
13
wger/rootfs/run.sh
Normal file
13
wger/rootfs/run.sh
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
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 -H -u wger bash -c /./home/wger/entrypoint.sh
|
||||||
Reference in New Issue
Block a user