-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"cosmos-installer": { | ||
"form": [ | ||
{ | ||
"type": "info", | ||
"label": "Threadfin requires you provide xml file(s) of your channels. The path below is intended to be the location of those file(s)." | ||
}, | ||
{ | ||
"name": "dataPath", | ||
"label": "What path will the XMLTV file(s) used be located? (leave empty to not mount anything)", | ||
"initialValue": "{DefaultDataPath}/xmltv", | ||
"type": "text" | ||
} | ||
], | ||
"post-install": [ | ||
{ | ||
"type": "warning", | ||
"label": "When accessing your Threadfin url, don't forget to add /web to the end (needs to be done manually)." | ||
} | ||
] | ||
}, | ||
"minVersion": "0.10.3", | ||
"services": { | ||
"{ServiceName}": { | ||
"image": "fyb3roptik/threadfin:latest", | ||
"container_name": "{ServiceName}", | ||
"restart": "unless-stopped", | ||
"UID": 1000, | ||
"GID": 1000, | ||
"environment": [ | ||
"PUID=1000", | ||
"PGID=1000", | ||
"TZ=auto" | ||
], | ||
"labels": { | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Threadfin/icon.png" | ||
}, | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}", | ||
"target": "/home/threadfin", | ||
"type": "volume" | ||
} | ||
{if Context.dataPath} | ||
,{ | ||
"source": "{Context.dataPath}", | ||
"target": "/data", | ||
"type": "bind" | ||
} | ||
{/if} | ||
], | ||
"routes": [ | ||
{ | ||
"name": "{ServiceName}", | ||
"description": "Expose {ServiceName} to the web", | ||
"useHost": true, | ||
"target": "http://{ServiceName}:34400", | ||
"mode": "SERVAPP", | ||
"Timeout": 14400000, | ||
"ThrottlePerMinute": 12000, | ||
"BlockCommonBots": true, | ||
"SmartShield": { | ||
"Enabled": true | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Threadfin", | ||
"description": "M3U Proxy for Plex DVR and Emby/Jellyfin Live TV. Based on xTeVe.", | ||
"longDescription": "<p>Threadfin is a M3U proxy server for Plex, Emby, Jellyfin and any client and provider which supports the .TS and .M3U8 (HLS) streaming formats.</p><p>Threadfin emulates a SiliconDust HDHomeRun OTA tuner, which allows it to expose IPTV style channels to software, which would not normally support it. This Docker image includes the following packages and features:</p><ul><li>Threadfin (Linux) x86 64 bit ffmpeg Support Runs as unprivileged user</li></ul>", | ||
"tags": ["media", "iptv", "tvguide", "open-source", "self-hosted", "web application", "plex", "emby", "jellyfin", "request system", "media content", "windows", "linux", "macos", "docker"], | ||
"repository": "https://github.com/Threadfin/Threadfin", | ||
"image": "https://hub.docker.com/r/fyb3roptik/threadfin", | ||
"supported_architectures": ["amd64","arm64","arm/v7","arm/v8"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.