Files
homelab/tasks/lidarr.yml
Renovate Bot 5e055b864f chore(deps-major): Update ghcr.io/linuxserver/lidarr Docker tag to v8
| datasource | package                    | from   | to       |
| ---------- | -------------------------- | ------ | -------- |
| docker     | ghcr.io/linuxserver/lidarr | 2.14.5 | 8.1.2135 |
2025-10-15 10:33:07 +00:00

35 lines
910 B
YAML

---
- name: Create directories
file:
path: "{{ item }}"
state: directory
with_items:
- "/data/lidarr"
- "/data/lidarr/config"
- name: Create the lidarr container
docker_container:
name: lidarr
image: ghcr.io/linuxserver/lidarr:8.1.2135
restart_policy: unless-stopped
networks:
- name: proxy
env:
PUID: "1000"
PGID: "1000"
TZ: "Australia/Brisbane"
AUTO_UPDATE: "true" #optional
DOCKER_MODS: "ghcr.io/themepark-dev/theme.park:lidarr"
volumes:
- "/data/lidarr/config:/config"
- /mnt/nfs/data:/data
labels:
traefik.enable: "true"
traefik.http.routers.lidarr.rule: "Host(`lidarr.comprofix.xyz`)"
traefik.http.routers.lidarr.entrypoints: "https"
traefik.http.routers.lidarr.tls: "true"
traefik.http.services.lidarr.loadbalancer.server.port: "8686"
pull: true
recreate: true