mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
16 lines
299 B
Bash
16 lines
299 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
handle_signal() {
|
||
|
PID=$!
|
||
|
echo "Received signal. PID is ${PID}"
|
||
|
kill -s SIGHUP $PID
|
||
|
}
|
||
|
|
||
|
trap "handle_signal" SIGINT SIGTERM SIGHUP
|
||
|
|
||
|
echo "Starting radarr..."
|
||
|
exec mono --debug /opt/radarr/Radarr.exe --no-browser -data=/config & wait
|
||
|
echo "Stopping radarr..."
|