Hi, I’ve followed the docker-compose volume instructions but it seems like I’m getting errors within Readarr:
You are using docker; download client sab places downloads in /data/usenet/complete/books but this directory does not appear to exist inside the container. Review your remote path mappings and container volume settings.
Instructions:
volumes:
- /path/to/data:/config
- /path/to/books:/books #optional
- /path/to/downloadclient-downloads:/downloads #optional
My docker-compose:
version: "2.1"
services:
readarr:
image: lscr.io/linuxserver/readarr:develop
container_name: readarr
environment:
- PUID=1000
- PGID=1000
- TZ=Australia/Sydney
volumes:
- /home/user/readarr:/config
- /data/media/books:/books #optional
- /data/usenet/complete:/downloads #optional
ports:
- 8787:8787
restart: unless-stopped
Any suggestions, thanks?