commit 4fa0ce40ed4ad7569167ae6d8a182790b26f4933 Author: Matt Speer Date: Sat Dec 20 12:40:08 2025 -0600 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d66742 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +ARL Repo - https://rentry.org/firehawk52#deezer-arls \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..82ae244 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +version: "3" +services: + lidarr: + image: youegraillot/lidarr-on-steroids + container_name: lidarr-os + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + restart: unless-stopped + ports: + - "8687:8686" # Lidarr web UI + - "6595:6595" # Deemix web UI + volumes: + - /home/mattspeer/docker/lidarr-os:/config + - /home/mattspeer/docker/lidarr-os/deemix:/config_deemix + - /downloads/complete/music:/downloads + - /library/music:/music \ No newline at end of file