This commit is contained in:
2025-05-26 17:34:34 +02:00
commit 80edaeb8e2
7 changed files with 152 additions and 0 deletions

9
docker-run.sh Executable file
View File

@ -0,0 +1,9 @@
#!/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