Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97105c02dd | |||
| 3acb57680d |
25
README.md
25
README.md
@@ -63,6 +63,31 @@ You can also overwrite the location where deluge's configuration is stored (e.g.
|
|||||||
deluge_config_volume: '{{ arrs_configuration_volume }}/deluge'
|
deluge_config_volume: '{{ arrs_configuration_volume }}/deluge'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Radarr
|
||||||
|
|
||||||
|
You can specify the image version and the port exposed:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
radarr_image_version: 'latest'
|
||||||
|
radarr_host_port: 7878
|
||||||
|
```
|
||||||
|
You can also overwrite the location where radarr's configuration is stored (e.g. if you already have it installed and you want to use the Ansible role):
|
||||||
|
|
||||||
|
```yml
|
||||||
|
radarr_config_volume: '{{ arrs_configuration_volume }}/radarr'
|
||||||
|
```
|
||||||
|
|
||||||
|
Radarr needs a place to copy the downloaded series:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
radarr_series_volume: '/mnt/videos/Movies'
|
||||||
|
```
|
||||||
|
|
||||||
|
**Notes**:
|
||||||
|
|
||||||
|
- Depending on your settings, it will also rename your current series
|
||||||
|
- You need write access to that directory, so Sonarr can actually copy the files
|
||||||
|
|
||||||
### Sonarr
|
### Sonarr
|
||||||
|
|
||||||
You can specify the image version and the port exposed:
|
You can specify the image version and the port exposed:
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ arrs_uid:
|
|||||||
arrs_gid:
|
arrs_gid:
|
||||||
|
|
||||||
deluge_enabled: true
|
deluge_enabled: true
|
||||||
|
radarr_enabled: true
|
||||||
sonarr_enabled: true
|
sonarr_enabled: true
|
||||||
lidarr_enabled: true
|
lidarr_enabled: true
|
||||||
jackett_enabled: true
|
jackett_enabled: true
|
||||||
@@ -25,6 +26,14 @@ deluge_admin_port: 8112
|
|||||||
|
|
||||||
deluge_config_volume: '{{ arrs_configuration_volume }}/deluge'
|
deluge_config_volume: '{{ arrs_configuration_volume }}/deluge'
|
||||||
|
|
||||||
|
# Radarr
|
||||||
|
#
|
||||||
|
radarr_image_version: 'latest'
|
||||||
|
radarr_host_port: 7878
|
||||||
|
|
||||||
|
radarr_config_volume: '{{ arrs_configuration_volume }}/radarr'
|
||||||
|
radarr_series_volume: '/mnt/videos/Movies'
|
||||||
|
|
||||||
# Sonarr
|
# Sonarr
|
||||||
#
|
#
|
||||||
sonarr_image_version: 'latest'
|
sonarr_image_version: 'latest'
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ version: "3.3"
|
|||||||
services:
|
services:
|
||||||
{% if deluge_enabled %}
|
{% if deluge_enabled %}
|
||||||
deluge:
|
deluge:
|
||||||
image: "linuxserver/deluge:{{ deluge_image_version }}"
|
image: "lscr.io/linuxserver/deluge:{{ deluge_image_version }}"
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- {{ arrs_setup_path }}/env.deluge.conf
|
- {{ arrs_setup_path }}/env.deluge.conf
|
||||||
volumes:
|
volumes:
|
||||||
@@ -16,10 +16,25 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- arrs
|
- arrs
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if radarr_enabled %}
|
||||||
|
sonarr:
|
||||||
|
image: "lscr.io/linuxserver/radarr:{{ radarr_image_version }}"
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- {{ arrs_setup_path }}/env.radarr.conf
|
||||||
|
volumes:
|
||||||
|
- {{ radarr_config_volume }}:/config
|
||||||
|
- {{ radarr_series_volume }}:/movies
|
||||||
|
- {{ torrent_downloads_volume }}:/downloads
|
||||||
|
ports:
|
||||||
|
- {{ radarr_host_port }}:7878
|
||||||
|
networks:
|
||||||
|
- arrs
|
||||||
|
{% endif %}
|
||||||
{% if sonarr_enabled %}
|
{% if sonarr_enabled %}
|
||||||
sonarr:
|
sonarr:
|
||||||
image: "lscr.io/linuxserver/sonarr:{{ sonarr_image_version }}"
|
image: "lscr.io/linuxserver/sonarr:{{ sonarr_image_version }}"
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- {{ arrs_setup_path }}/env.sonarr.conf
|
- {{ arrs_setup_path }}/env.sonarr.conf
|
||||||
volumes:
|
volumes:
|
||||||
@@ -34,12 +49,15 @@ services:
|
|||||||
{% if lidarr_enabled %}
|
{% if lidarr_enabled %}
|
||||||
lidarr:
|
lidarr:
|
||||||
image: "lscr.io/linuxserver/lidarr:{{ lidarr_image_version }}"
|
image: "lscr.io/linuxserver/lidarr:{{ lidarr_image_version }}"
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- {{ arrs_setup_path }}/env.sonarr.conf
|
- {{ arrs_setup_path }}/env.sonarr.conf
|
||||||
volumes:
|
volumes:
|
||||||
- {{ lidarr_config_volume }}:/config
|
- {{ lidarr_config_volume }}:/config
|
||||||
- {{ torrent_downloads_volume }}:/downloads
|
- {{ torrent_downloads_volume }}:/downloads
|
||||||
|
{% for item in lidarr_music_volumes %}
|
||||||
|
- {{ item.path }}:/music/{{ item.alias }}
|
||||||
|
{% endfor %}
|
||||||
ports:
|
ports:
|
||||||
- {{ lidarr_host_port }}:8686
|
- {{ lidarr_host_port }}:8686
|
||||||
networks:
|
networks:
|
||||||
@@ -48,15 +66,13 @@ services:
|
|||||||
{% if jackett_enabled %}
|
{% if jackett_enabled %}
|
||||||
jackett:
|
jackett:
|
||||||
image: "lscr.io/linuxserver/jackett:{{ jackett_image_version }}"
|
image: "lscr.io/linuxserver/jackett:{{ jackett_image_version }}"
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- {{ arrs_setup_path }}/env.jackett.conf
|
- {{ arrs_setup_path }}/env.jackett.conf
|
||||||
volumes:
|
volumes:
|
||||||
- {{ jackett_config_volume }}:/config
|
- {{ jackett_config_volume }}:/config
|
||||||
- {{ torrent_downloads_volume }}:/downloads
|
- {{ torrent_downloads_volume }}:/downloads
|
||||||
{% for item in lidarr_music_volumes %}
|
|
||||||
- {{ item.path }}:/music/{{ item.alias }}
|
|
||||||
{% endfor %}
|
|
||||||
ports:
|
ports:
|
||||||
- {{ jackett_host_port }}:9117
|
- {{ jackett_host_port }}:9117
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
@@ -4,5 +4,5 @@ DELUGE_LOGLEVEL={{ deluge_loglevel }}
|
|||||||
PUID={{ arrs_uid }}
|
PUID={{ arrs_uid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if arrs_gid %}
|
{% if arrs_gid %}
|
||||||
PUID={{ arrs_gid }}
|
PGID={{ arrs_gid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -4,5 +4,5 @@ TZ={{ timezone }}
|
|||||||
PUID={{ arrs_uid }}
|
PUID={{ arrs_uid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if arrs_gid %}
|
{% if arrs_gid %}
|
||||||
PUID={{ arrs_gid }}
|
PGID={{ arrs_gid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -3,5 +3,5 @@ TZ={{ timezone }}
|
|||||||
PUID={{ arrs_uid }}
|
PUID={{ arrs_uid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if arrs_gid %}
|
{% if arrs_gid %}
|
||||||
PUID={{ arrs_gid }}
|
PGID={{ arrs_gid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
8
templates/env.radarr.conf.j2
Normal file
8
templates/env.radarr.conf.j2
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
MONO_EXTERNAL_ENCODINGS=UTF-8
|
||||||
|
TZ={{ timezone }}
|
||||||
|
{% if arrs_uid %}
|
||||||
|
PUID={{ arrs_uid }}
|
||||||
|
{% endif %}
|
||||||
|
{% if arrs_gid %}
|
||||||
|
PGID={{ arrs_gid }}
|
||||||
|
{% endif %}
|
||||||
@@ -4,5 +4,5 @@ TZ={{ timezone }}
|
|||||||
PUID={{ arrs_uid }}
|
PUID={{ arrs_uid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if arrs_gid %}
|
{% if arrs_gid %}
|
||||||
PUID={{ arrs_gid }}
|
PGID={{ arrs_gid }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user