Add soularr
This commit is contained in:
44
ansible/roles/soularr/templates/config.ini
Normal file
44
ansible/roles/soularr/templates/config.ini
Normal file
@@ -0,0 +1,44 @@
|
||||
[Lidarr]
|
||||
api_key = {{ lidarr_api_key }}
|
||||
host_url = https://lidarr.local.{{ personal_domain }}
|
||||
# This is the soulseek downloads directory as lidarr sees it
|
||||
download_dir = /data/ddl/soulseek
|
||||
disable_sync = False
|
||||
|
||||
[Slskd]
|
||||
api_key = {{ slskd_api_key }}
|
||||
host_url = https://soulseek.local.{{ personal_domain }}
|
||||
url_base = /
|
||||
download_dir = /downloads
|
||||
delete_searches = False
|
||||
stalled_timeout = 3600
|
||||
|
||||
[Release Settings]
|
||||
use_most_common_tracknum = True
|
||||
allow_multi_disc = True
|
||||
accepted_countries = Europe,Japan,United Kingdom,United States,[Worldwide],Australia,Canada
|
||||
skip_region_check = False
|
||||
accepted_formats = CD,Digital Media,Vinyl
|
||||
|
||||
[Search Settings]
|
||||
search_timeout = 5000
|
||||
maximum_peer_queue = 50
|
||||
minimum_peer_upload_speed = 0
|
||||
minimum_filename_match_ratio = 0.8
|
||||
allowed_filetypes = flac 24/192,flac 16/44.1,flac
|
||||
ignored_users = User1,User2,Fred,Bob
|
||||
search_for_tracks = True
|
||||
album_prepend_artist = False
|
||||
track_prepend_artist = True
|
||||
search_type = incrementing_page
|
||||
number_of_albums_to_grab = 10
|
||||
remove_wanted_on_failure = False
|
||||
title_blacklist = BlacklistWord1,blacklistword2
|
||||
search_source = missing
|
||||
|
||||
[Logging]
|
||||
level = INFO
|
||||
# https://docs.python.org/3/library/logging.html#logrecord-attributes
|
||||
format = [%(levelname)s|%(module)s|L%(lineno)d] %(asctime)s: %(message)s
|
||||
# https://docs.python.org/3/library/time.html#time.strftime
|
||||
datefmt = %Y-%m-%dT%H:%M:%S%z
|
11
ansible/roles/soularr/templates/docker-compose.yml
Normal file
11
ansible/roles/soularr/templates/docker-compose.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
services:
|
||||
soularr:
|
||||
container_name: "soularr"
|
||||
image: mrusse08/soularr:latest
|
||||
restart: unless-stopped
|
||||
user: "{{ service_user.uid }}:{{ media_gid }}"
|
||||
environment:
|
||||
- "TZ={{ timezone }}"
|
||||
volumes:
|
||||
- "{{ data_dir }}/{{ role_name }}:/data"
|
||||
- "{{ media_storage_mnt }}/data/ddl/soulseek:/downloads"
|
Reference in New Issue
Block a user