-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathFreshRSS.json
More file actions
40 lines (40 loc) · 1.32 KB
/
FreshRSS.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"FreshRSS": {
"description": "FreshRSS is a free, self-hostable aggregator for rss feeds. <p>Based on a <a href='https://hub.docker.com/r/linuxserver/freshrss' target='_blank'>custom OCI image</a>, available for amd64 and arm64 architecture.",
"version": "1.1",
"website": "https://freshrss.org/",
"containers": {
"linuxserver-freshrss": {
"image": "linuxserver/freshrss",
"launch_order": 1,
"ports": {
"80": {
"description": "FreshRSS Web UI Port",
"label": "WebUI port [e.g. 3093]",
"host_default": 3093,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "FreshRSS site files.",
"label": "Storage [e.g. freshrss-data]"
}
},
"environment": {
"PGID": {
"description": "GID to use along with the above UID. It (or the above UID) must have full permissions to all Shares mapped in the previous step.",
"label": "GID",
"index": 2
},
"PUID": {
"description": "UID to run as. It must have full permissions to all Shares mapped in the previous step.",
"label": "UID",
"index": 1
}
}
}
}
}
}