diff --git a/README.md b/README.md index 94af74f0..2b254e0f 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ This is the official repository for the Tipi App Store. It contains all the apps - [Joplin](https://github.com/laurent22/joplin) - Privacy focused note-taking app - [Libreddit](https://github.com/spikecodes/libreddit) - Private front-end for Reddit - [LibreTranslate](https://github.com/LibreTranslate/LibreTranslate) - Free and Open Source Machine Translation API. 100% self-hosted, offline capable and easy to setup +- [Lidarr](https://github.com/Lidarr/Lidarr) - Looks and smells like Sonarr but made for music. - [Mealie](https://github.com/hay-kot/mealie) - Self-hosted recipe manager and meal planner. - [Monero Daemon](https://github.com/monero-project/monero/) - A network daemon for Monero: the secure, private, untraceable cryptocurrency - [Monero p2pool Daemon](https://github.com/SChernykh/p2pool) - Decentralized pool for Monero mining diff --git a/apps/lidarr/config.json b/apps/lidarr/config.json new file mode 100644 index 00000000..69581336 --- /dev/null +++ b/apps/lidarr/config.json @@ -0,0 +1,16 @@ +{ + "$schema": "../schema.json", + "name": "Lidarr", + "available": true, + "exposable": true, + "port": 8131, + "id": "lidarr", + "tipi_version": 1, + "version": "1.0.2.2592", + "categories": ["media", "music"], + "description": "Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.", + "short_desc": " Looks and smells like Sonarr but made for music.", + "author": "lidarr.audio", + "source": "https://github.com/Lidarr/Lidarr", + "form_fields": [] +} diff --git a/apps/lidarr/docker-compose.yml b/apps/lidarr/docker-compose.yml new file mode 100644 index 00000000..a35f3e75 --- /dev/null +++ b/apps/lidarr/docker-compose.yml @@ -0,0 +1,25 @@ +version: "3.7" +services: + lidarr: + image: lscr.io/linuxserver/lidarr:1.0.2 + container_name: lidarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=${TZ} + volumes: + - /etc/localtime:/etc/localtime:ro + - ${APP_DATA_DIR}/data:/config + - ${ROOT_FOLDER_HOST}/media:/media + ports: + - ${APP_PORT}:8686 + restart: unless-stopped + networks: + - tipi_main_network + labels: + traefik.enable: ${APP_EXPOSED} + traefik.http.routers.lidarr.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.lidarr.entrypoints: websecure + traefik.http.routers.lidarr.service: lidarr + traefik.http.routers.lidarr.tls.certresolver: myresolver + traefik.http.services.lidarr.loadbalancer.server.port: 8686 \ No newline at end of file diff --git a/apps/lidarr/metadata/description.md b/apps/lidarr/metadata/description.md new file mode 100644 index 00000000..e02b2454 --- /dev/null +++ b/apps/lidarr/metadata/description.md @@ -0,0 +1,17 @@ +## Looks and smells like Sonarr but made for music. + +Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. + +### Major Features Include + +- Support for major platforms: Windows, Linux, macOS, Raspberry Pi, etc. +- Automatically detects new tracks. +- Can scan your existing library and download any missing tracks. +- Can watch for better quality of the tracks you already have and do an automatic upgrade. +- Automatic failed download handling will try another release if one fails +- Manual search so you can pick any release or to see why a release was not downloaded automatically +- Fully configurable track renaming +- Full integration with SABnzbd and NZBGet +- Full integration with Kodi, Plex (notification, library update, metadata) +- Full support for specials and multi-album releases +- And a beautiful UI diff --git a/apps/lidarr/metadata/logo.jpg b/apps/lidarr/metadata/logo.jpg new file mode 100644 index 00000000..6b8d0530 Binary files /dev/null and b/apps/lidarr/metadata/logo.jpg differ