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