Skip to content

Commit

Permalink
Add MeTube
Browse files Browse the repository at this point in the history
  • Loading branch information
jwr1 committed Aug 4, 2023
1 parent 55e8acd commit 491a9a0
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
49 changes: 49 additions & 0 deletions servapps/MeTube/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"cosmos-installer": {
"form": [
{
"name": "downloadsPath",
"label": "What is the path to your downloads? (leave empty to not mount anything)",
"initialValue": "{DefaultDataPath}/downloads",
"type": "text"
}
]
},
"minVersion": "0.7.6",
"services": {
"{ServiceName}": {
"image": "ghcr.io/alexta69/metube",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/MeTube/icon.png"
},
"volumes": [
{if Context.downloadsPath}
{
"source": "{Context.downloadsPath}",
"target": "/data/movies",
"type": "bind"
}
{/if}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:8081",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/MeTube/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "MeTube",
"description": "youtube-dl web UI",
"longDescription": "<p>Web GUI for youtube-dl (using the yt-dlp fork) with playlist support. Allows you to download videos from YouTube and dozens of other sites.</p>",
"tags": ["youtube", "youtube-dl", "download", "videos", "music", "media"],
"repository": "https://github.com/alexta69/metube",
"image": "https://github.com/alexta69/metube/pkgs/container/metube",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/MeTube/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/MeTube/screenshots/1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 491a9a0

Please sign in to comment.