Skip to content

Commit 81f33a1

Browse files
authored
Merge pull request #178 from acknologia/seerr-install-script
installation script for seerr
2 parents dc5029f + f78d505 commit 81f33a1

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

docs/features/apps/install-scripts/curated/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
| `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 781 B | 2026-05-15 |
2626
| `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2026-05-15 |
2727
| `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.3 KB | 2026-05-15 |
28+
| `seerr` | [seerr.json](/install-scripts/seerr.json) | 924 B | 2026-03-09 |
2829
| `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.4 KB | 2026-05-15 |
2930
| `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.3 KB | 2026-05-15 |
3031
| `syncthing` | [syncthing.json](/install-scripts/syncthing.json) | 2.6 KB | 2026-05-15 |
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"version": 4,
3+
"script": {
4+
"version": "1.0.0",
5+
"changeLog": "Initial Script"
6+
},
7+
"requirements": {
8+
"locations": [
9+
"ApplicationsPerformance"
10+
],
11+
"specifications": [
12+
"2CORE",
13+
"1024MB"
14+
],
15+
"permissions": [
16+
"READ_WRITE_LOCATIONS"
17+
],
18+
"ports": [30357]
19+
},
20+
"ensure_directories_exists": [
21+
{
22+
"path": "$LOCATION(ApplicationsPerformance)",
23+
"network_share": true
24+
},
25+
{ "path": "$LOCATION(ApplicationsPerformance)/seerr/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } }
26+
],
27+
"app_values": {
28+
"storage": {
29+
"config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/seerr/config)"
30+
},
31+
"network": {
32+
"web_port": {
33+
"bind_mode": "published",
34+
"port_number": 30357
35+
}
36+
},
37+
"resources": {
38+
"limits": {
39+
"cpus": 2,
40+
"memory": "$MEMORY(10%, 2048)"
41+
}
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)