Move from Jackett to Prowlarr, add Lidarr
This commit is contained in:
parent
67f5a6565a
commit
e91c0e7710
@ -29,9 +29,10 @@
|
||||
include_tasks: tasks/web/{{ task }}
|
||||
with_items:
|
||||
- transmission.yml
|
||||
- jackett.yml
|
||||
- prowlarr.yml
|
||||
- sonarr.yml
|
||||
- radarr.yml
|
||||
- lidarr.yml
|
||||
- jellyfin.yml
|
||||
loop_control:
|
||||
loop_var: task
|
||||
@ -41,7 +42,6 @@
|
||||
vars:
|
||||
backup_s3backup_list_extra:
|
||||
- /data/transmisson
|
||||
- /data/jackett
|
||||
- /data/sonarr
|
||||
backup_time: "Mon *-*-* 02:00:00"
|
||||
tags: [ backup ]
|
||||
@ -57,12 +57,14 @@
|
||||
ingress_servers:
|
||||
- name: transmission.local.desu.ltd
|
||||
proxy_pass: http://transmission:9091
|
||||
- name: jackett.local.desu.ltd
|
||||
proxy_pass: http://jackett:9117
|
||||
- name: prowlarr.local.desu.ltd
|
||||
proxy_pass: http://prowlarr:9696
|
||||
- name: jellyfin.local.desu.ltd
|
||||
proxy_pass: http://jellyfin:8096
|
||||
- name: sonarr.local.desu.ltd
|
||||
proxy_pass: http://sonarr:8989
|
||||
- name: radarr.local.desu.ltd
|
||||
proxy_pass: http://radarr:7878
|
||||
- name: lidarr.local.desu.ltd
|
||||
proxy_pass: http://lidarr:8686
|
||||
tags: [ ingress ]
|
||||
|
@ -118,12 +118,17 @@
|
||||
value: pi-homeauto-1.home.mgmt.desu.ltd
|
||||
- record: jackett.local.desu.ltd
|
||||
value: zt1.vm-media-1.home.mgmt.desu.ltd
|
||||
state: absent
|
||||
- record: prowlarr.local.desu.ltd
|
||||
value: zt1.vm-media-1.home.mgmt.desu.ltd
|
||||
- record: jellyfin.local.desu.ltd
|
||||
value: zt1.vm-media-1.home.mgmt.desu.ltd
|
||||
- record: radarr.local.desu.ltd
|
||||
value: zt1.vm-media-1.home.mgmt.desu.ltd
|
||||
- record: sonarr.local.desu.ltd
|
||||
value: zt1.vm-media-1.home.mgmt.desu.ltd
|
||||
- record: lidarr.local.desu.ltd
|
||||
value: zt1.vm-media-1.home.mgmt.desu.ltd
|
||||
- record: syncthing.local.desu.ltd
|
||||
value: vm-syncthing-1.home.mgmt.desu.ltd
|
||||
- record: transmission.local.desu.ltd
|
||||
|
@ -1,13 +0,0 @@
|
||||
# vim:ft=ansible:
|
||||
- name: docker deploy jackett
|
||||
docker_container:
|
||||
name: jackett
|
||||
image: linuxserver/jackett:latest
|
||||
env:
|
||||
AUTO_UPDATE: "false"
|
||||
networks:
|
||||
- name: web
|
||||
aliases: [ "jackett" ]
|
||||
volumes:
|
||||
- /data/jackett/config:/config
|
||||
tags: [ docker, jackett ]
|
15
playbooks/tasks/web/lidarr.yml
Normal file
15
playbooks/tasks/web/lidarr.yml
Normal file
@ -0,0 +1,15 @@
|
||||
# vim:ft=ansible:
|
||||
- name: docker deploy lidarr
|
||||
docker_container:
|
||||
name: lidarr
|
||||
image: linuxserver/lidarr:latest
|
||||
networks:
|
||||
- name: web
|
||||
aliases: [ "lidarr" ]
|
||||
env:
|
||||
TZ: "America/Chicago"
|
||||
volumes:
|
||||
- /data/lidarr/config:/config
|
||||
- /data/shared/downloads:/data
|
||||
- /data/shared/media/music:/music
|
||||
tags: [ docker, lidarr ]
|
11
playbooks/tasks/web/prowlarr.yml
Normal file
11
playbooks/tasks/web/prowlarr.yml
Normal file
@ -0,0 +1,11 @@
|
||||
# vim:ft=ansible:
|
||||
- name: docker deploy prowlarr
|
||||
docker_container:
|
||||
name: prowlarr
|
||||
image: linuxserver/prowlarr:develop
|
||||
networks:
|
||||
- name: web
|
||||
aliases: [ "prowlarr" ]
|
||||
volumes:
|
||||
- /data/prowlarr/config:/config
|
||||
tags: [ docker, prowlarr ]
|
Loading…
Reference in New Issue
Block a user