Files
lidarr/docker-compose.yaml
T
mattspeer e2b0156814 Update docker-compose.yaml
Removed watchtower label since watchtower is no longer used.
2026-05-31 12:39:01 -05:00

31 lines
1013 B
YAML

services:
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
networks:
- traefik-public
- immich
labels:
- "traefik.enable=true"
- "traefik.http.routers.lidarr.rule=Host(`lidarr.speerfam.net`)"
- "traefik.http.routers.lidarr.entrypoints=websecure"
- "traefik.http.routers.lidarr.tls.certresolver=myresolver"
# Pulling the security rules dynamically from our file provider setup
- "traefik.http.routers.lidarr.middlewares=geoblock-policy@file,crowdsec-policy@file,secure-headers@file"
- "traefik.http.services.lidarr.loadbalancer.server.port=8686"
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- /home/mattspeer/docker/lidarr:/config
- /srv/music:/music #location of music library
- /downloads/complete/music:/downloads/music #location of sabnzb output
ports:
- 8686:8686
restart: always
networks:
traefik-public:
external: true