Files
lidarr/docker-compose.yaml
T
mattspeer 56be257932 Update docker-compose.yaml
Added labels and network for traefik
2026-05-30 20:44:27 -05:00

32 lines
1.0 KiB
YAML

services:
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
networks:
- traefik-public
- immich
labels:
- "com.centurylinklabs.watchtower.monitor-only=true"
- "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