- Add CloudronManifest.json with proper metadata - Add Dockerfile to build Prowlarr container - Add start.sh script to launch Prowlarr - Add icon.png for the app - Remove old LICENSE and README.md files
7 lines
125 B
Bash
Executable File
7 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
echo "Starting Prowlarr..."
|
|
exec /app/code/prowlarr/Prowlarr/Prowlarr -nobrowser -data=/app/data/config/
|