-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathprofilarr.json
More file actions
68 lines (68 loc) · 1.7 KB
/
Copy pathprofilarr.json
File metadata and controls
68 lines (68 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"version": 5,
"script": {
"version": "1.1",
"changeLog": "Added hook to connect Profilarr after installation"
},
"requirements": {
"locations": [
"ApplicationsPerformance"
],
"specifications": [
"2CORE",
"200MB"
],
"permissions": [
"READ_WRITE_LOCATIONS"
],
"ports": [
6868
]
},
"ensure_directories_exists": [
{
"path": "$LOCATION(ApplicationsPerformance)",
"network_share": true
},
{
"path": "$LOCATION(ApplicationsPerformance)/profilarr/config",
"owner": { "user": "apps", "group": "docker" },
"snapshot": { "id": "config" }
}
],
"app_values": {
"profilarr": {
"additional_envs": [
{
"name": "AUTH",
"value": "off"
}
]
},
"storage": {
"config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/profilarr/config)"
},
"network": {
"web_port": {
"bind_mode": "published",
"port_number": 6868
}
},
"resources": {
"limits": {
"cpus": 2,
"memory": "$MEMORY(10%, 2048)"
}
}
},
"hooks": [
{
"id": "configure-profilarr",
"event": "onAfterInstall",
"script": "profilarr/hook.ts",
"entrypoint": "onAfterInstall",
"description": "Connecting to Sonarr and Radarr",
"optional": true
}
]
}