Skip to content

Commit

Permalink
feat(market): added unpackerr (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serph91P authored Nov 14, 2023
1 parent f504bf4 commit d5c5f4b
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
47 changes: 47 additions & 0 deletions servapps/unpackerr/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"cosmos-installer": {
"form": [
{
"name": "libraryPath",
"label": "What is the path where you store the files that Unpackerr will scan? (leave empty to not mount anything)",
"initialValue": "{DefaultDataPath}/library",
"type": "text"
}
]
},
"minVersion": "0.4.0",
"services": {
"{ServiceName}": {
"image": "ghcr.io/hotio/unpackerr:release",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"UID": 1000,
"GID": 1000,
"environment": [
"PUID=1000",
"PGID=1000",
"UMASK=022",
"TZ=auto"
],
"labels": {
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Unpackerr/icon.png"
},
{/if}
"volumes": [
{
"source": "{ServiceName}-config",
"target": "/config",
"type": "volume"
}
{if Context.libraryPath}
, {
"source": "{Context.libraryPath}",
"target": "/library",
"type": "bind"
}
{/if}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/unpackerr/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Unmanic",
"description": "Unpackerr extracts your Sonarr/Radarr/Lidarr torrent files.",
"longDescription": "<p>Unpackerr extracts your Sonarr/Radarr/Lidarr torrent files.</p>",
"tags": ["media", "server", "tv", "videos", "media management", "download", "zip", "unpack", "rar"],
"repository": "https://github.com/hotio/unpackerr/pkgs/container/unpackerr",
"image": "https://github.com/hotio/unpackerr/pkgs/container/unpackerr",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/unpackerr/icon.png
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 d5c5f4b

Please sign in to comment.