Installation
The service can be installed through the Portainer web interface.
Learn about creating a new stack.
Docker Compose
Use the following code to install the service:
---
services:
readarr:
image: lscr.io/linuxserver/readarr:latest
container_name: readarr
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- TZ=America/Vancouver
volumes:
# Persistent Data
- /srv/readarr/:/config
# Media Folders
- /mnt/books:/mnt/book
# Download Folders
- /media/data/Enclave:/media/data/Enclave
ports:
- 8787:8787
restart: unless-stopped