Lidarr

Link to Github

Link to access App

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.

Lidarr hosted on Latte

https://github.com/trentnbauer/agg/blob/main/docker-compose/lidarr.yml
---
version: "2.3"
services:
  app:
    image: lscr.io/linuxserver/lidarr:2.11.2.4629-ls40@sha256:273641e57caa284a1439b062eea2faed965761d6b7bda78a687184080a901cc2
    environment:
      #- PUID=1000
      #- PGID=1000
      - TZ=${TZL:-Australia/Melbourne}
    volumes:
      - config:/config
      - media:/music
      - downloads:/downloads
    ports:
      - ${PORT:-8686}:8686
    restart: unless-stopped
    networks:
      - cloudflare-net
    healthcheck:
      test: curl --connect-timeout 15 --silent --show-error --fail -k http://localhost:8686/ping
      interval: 30s
      retries: 3
      start_period: 30s
      timeout: 20s
    labels:
      - autoheal=true
      - dockflare.enable=${CFTUNNEL:-true}
      - dockflare.0.hostname=${CFSUBDOMAIN}${CFDOMAIN}
      - dockflare.0.service=http://${HOSTNAME}:${PORT:-8686}
      - dockflare.0.access.policy=${CFPOLICY:-default_tld}
      - dockflare.0.zonename=${CFDOMAIN}
      - dockflare.0.path=${CFURLPATH:-}
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "3"
volumes:
  config:
  media:
    driver_opts:
      type: nfs
      o: addr=$STORAGE,nfsvers=4
      device: :$MEDIA
  downloads:
    driver_opts:
      type: nfs 
      o: addr=$STORAGE,nfsvers=4
      device: :$DOWNLOAD

networks:
    cloudflare-net:
        name: cloudflare-net
        external: true
Port
Purpose

666

Webui

Host Volume
Container Volume
Purpose

media_downloads

/downloads

Where qBittorrent downloads too. Required to access completed downloads to shift to the Media library. Stored of Fettuccine, accessed via NFS

media_media

/music

Media library that Plex views. Required to manage metadata and add to library. Stored of Fettuccine, accessed via NFS

Last updated

Was this helpful?