generated from oci/template
Merith-TK
7e2e006c62
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 57s
11 lines
304 B
Bash
Executable file
11 lines
304 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ "$STOP_LAUNCH" == "true" ]; then
|
|
echo "STOP_LAUNCH is set to true, exiting..."
|
|
exit 0
|
|
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
|