- Add CloudronManifest.json with app configuration - Add Dockerfile for building Radarr image - Add start.sh script to launch Radarr - Add icon.png for app icon - Update README.md with installation and usage instructions
7 lines
117 B
Bash
Executable File
7 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
echo "Starting Radarr..."
|
|
exec /app/code/radarr/Radarr/Radarr -nobrowser -data=/app/data/config/
|