1c5ad04604
removed leftover immich network due to copy/paste
30 lines
998 B
YAML
30 lines
998 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:
|
|
- /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 |