Add Lidarr
This commit is contained in:
parent
f505b012c4
commit
ed4de7a004
|
@ -12,6 +12,7 @@ seedbox and personal media server.
|
||||||
| Sonarr | sonarr.yourdomain.com |
|
| Sonarr | sonarr.yourdomain.com |
|
||||||
| Radarr | radarr.yourdomain.com |
|
| Radarr | radarr.yourdomain.com |
|
||||||
| Bazarr | bazarr.yourdomain.com |
|
| Bazarr | bazarr.yourdomain.com |
|
||||||
|
| Lidarr | lidarr.yourdomain.com |
|
||||||
| Jackett | jackett.yourdomain.com |
|
| Jackett | jackett.yourdomain.com |
|
||||||
| JDownloader | jdownloader.yourdomain.com |
|
| JDownloader | jdownloader.yourdomain.com |
|
||||||
| Tautulli (plexPy) | tautulli.yourdomain.com |
|
| Tautulli (plexPy) | tautulli.yourdomain.com |
|
||||||
|
|
|
@ -154,6 +154,26 @@ services:
|
||||||
- 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
|
- 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
|
||||||
- 'traefik.enable=true'
|
- 'traefik.enable=true'
|
||||||
|
|
||||||
|
lidarr:
|
||||||
|
image: linuxserver:lidarr
|
||||||
|
container_name: lidarr
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- web
|
||||||
|
volumes:
|
||||||
|
- configlidarr:/config
|
||||||
|
- torrents:/torrents
|
||||||
|
environment:
|
||||||
|
- PGID=${PGID}
|
||||||
|
- PUID=${PUID}
|
||||||
|
- TZ=Europe/Paris
|
||||||
|
labels:
|
||||||
|
- 'traefik.backend=lidarr'
|
||||||
|
- 'traefik.port=8686'
|
||||||
|
- 'traefik.frontend.rule=Host:lidarr.${TRAEFIK_DOMAIN}'
|
||||||
|
- 'traefik.frontend.auth.basic.users=${HTTP_USER}:${HTTP_PASSWORD}'
|
||||||
|
- 'traefik.enable=true'
|
||||||
|
|
||||||
tautulli:
|
tautulli:
|
||||||
image: linuxserver/tautulli
|
image: linuxserver/tautulli
|
||||||
container_name: tautulli
|
container_name: tautulli
|
||||||
|
@ -323,6 +343,10 @@ volumes:
|
||||||
driver: local-persist
|
driver: local-persist
|
||||||
driver_opts:
|
driver_opts:
|
||||||
mountpoint: /data/config/bazarr
|
mountpoint: /data/config/bazarr
|
||||||
|
configlidarr:
|
||||||
|
driver: local-persist
|
||||||
|
driver_opts:
|
||||||
|
mountpoint: /data/config/lidarr
|
||||||
configdeluge:
|
configdeluge:
|
||||||
driver: local-persist
|
driver: local-persist
|
||||||
driver_opts:
|
driver_opts:
|
||||||
|
|
Loading…
Reference in New Issue