diff --git a/docker-compose.yml b/docker-compose.yml index a2d8a0d4..74cdeb65 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -48,6 +48,20 @@ services: # - /path/to/music-library:/host/music:rw # Optional: Mount your music library for Plex/Jellyfin/Navidrome access # - /path/to/your/music:/music:ro + # + # ─── Torrent / Usenet download sources (Prowlarr integration) ──────── + # If you use the Torrent Only or Usenet Only download sources, SoulSync + # needs to read the files your torrent / usenet client downloads. The + # mount path INSIDE SoulSync must MATCH the save_path your torrent or + # usenet client reports — easiest is to use the same path on both + # sides. Uncomment + edit the host path to point at the client's + # download folder: + # - /path/to/qbittorrent/downloads:/downloads/torrents:rw + # - /path/to/sabnzbd/complete:/downloads/usenet:rw + # Then set the torrent client's save path to /downloads/torrents and + # SAB / NZBGet's complete folder to /downloads/usenet (or whatever + # in-container path you chose). Skip these if your downloader runs + # outside Docker and writes to a path already mounted above. extra_hosts: # Allow container to reach host services - "host.docker.internal:host-gateway" diff --git a/webui/index.html b/webui/index.html index 35147361..d638df41 100644 --- a/webui/index.html +++ b/webui/index.html @@ -4971,6 +4971,17 @@
docker-compose.yml — uncomment and edit the host paths.