rebase to dotnet containter
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 57s

This commit is contained in:
Merith-TK 2024-12-09 21:58:51 +00:00
parent 6531e9422a
commit 7e2e006c62
10 changed files with 33 additions and 109 deletions

15
scripts/99_start.sh Normal file → Executable file
View file

@ -5,14 +5,7 @@ if [ "$STOP_LAUNCH" == "true" ]; then
exit 0
fi
# Check if Crystite is enabled
if [ "$USE_CRYSTITE" == "true" ]; then
echo "Running Crystite"
echo "exec: /usr/lib/crystite/crystite"
/usr/lib/crystite/crystite
else
cd /data/resonite/Headless || exit
echo "Running Resonite"
echo "exec: mono Resonite.exe $DEFAULT_RESONITE_ARGS $RESONITE_ARGS"
mono Resonite.exe $DEFAULT_RESONITE_ARGS $RESONITE_ARGS
fi
cd /data/resonite/Headless || exit
echo "Running Resonite"
echo "exec: dotnet Resonite.dll $DEFAULT_RESONITE_ARGS $RESONITE_ARGS"
dotnet Resonite.dll $DEFAULT_RESONITE_ARGS $RESONITE_ARGS