Lidarr with Deemix integration

This commit is contained in:
Andreas S. Turriff 2024-06-16 06:50:53 -07:00
parent eeef39f07d
commit 49219b0e88

60
lidarr.yaml Normal file
View File

@ -0,0 +1,60 @@
deemix:
deploy:
labels:
traefik.enable: "true"
traefik.http.routers.deemix-rtr.entrypoints: "websecure"
traefik.http.routers.deemix-rtr.middlewares: "authentik@swarm"
traefik.http.routers.deemix-rtr.rule: "Host(`deemix.your.domain`)"
traefik.http.routers.deemix-rtr.service: "deemix"
traefik.http.services.deemix.loadbalancer.server.port: "6595"
replicas: 1
environment:
PUID: 10011
PGID: 10002
UMASK: 9002
TZ: "Etc/UTC"
healthcheck:
test: "curl -f http://localhost:6595"
interval: 2m
timeout: 5s
start_period: 20s
hostname: "deemix"
image: "codefaux/deemix-for-lidarr"
networks:
- homelab
restart: on-failure
volumes:
- "/srv/data/shared/deemix/downloads:/downloads"
- "/srv/data/docker/deemix/config:/deemix-gui/config"
lidarr:
deploy:
labels:
traefik.enable: "true"
traefik.http.routers.lidarr-rtr.entrypoints: "websecure"
traefik.http.routers.lidarr-rtr.middlewares: "authentik@swarm"
traefik.http.routers.lidarr-rtr.rule: "Host(`lidarr.your.domain`)"
traefik.http.routers.lidarr-rtr.service: "lidarr"
traefik.http.services.lidarr.loadbalancer.server.port: "8686"
replicas: 1
environment:
PUID: 10010
PGID: 10002
UMASK: 0002
TZ: "Etc/UTC"
healthcheck:
test: "curl -f http://localhost:8686"
interval: 2m
timeout: 5s
start_period: 20s
hostname: "prowlarr"
image: "ghcr.io/hotio/lidarr:pr-plugins"
networks:
- homelab
restart: on-failure
volumes:
- "/srv/data/docker/lidarr/config:/config"
- "/srv/data/shared/deezer:/data/deezer"
- "/srv/data/shared/usenet:/data/usenet"
- "/srv/data/shared/torrent:/data/torrent"
- "/srv/data/shared/media:/data/media"