Files
lidarr/docker-compose.yaml
T
mattspeer 4dce47cb2a Update docker-compose.yaml
Updated config directory to use /srv instead of home directory.

Changed music directory to read only so that lidarr can't make changes.  this is now managed by beets
2026-07-19 10:46:59 -05:00

30 lines
990 B
YAML

services:
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
networks:
- traefik-public
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:
- /srv/docker/lidarr:/config
- /srv/music:/music:ro #location of music library
- /downloads/complete/music:/downloads/music #location of sabnzb output
ports:
- 8686:8686
restart: always
networks:
traefik-public:
external: true