10 lines
169 B
Bash
Executable File
10 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
DB=/app/db/main.db
|
|
if [ ! -f $DB ]; then
|
|
echo "Gen DB"
|
|
/app/initdb.sh
|
|
mkdir -p /app/db
|
|
mv /app/main.db $DB
|
|
fi
|
|
./betterboxd $PORT $TMDB_KEY $DB
|