19 lines
417 B
YAML
19 lines
417 B
YAML
services:
|
|
readarr:
|
|
image: lscr.io/linuxserver/readarr:nightly
|
|
container_name: readarr
|
|
restart: always
|
|
volumes:
|
|
- configreadarr:/config
|
|
- torrents:/torrents
|
|
- /etc/localtime:/etc/localtime:ro
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
|
|
volumes:
|
|
configreadarr:
|
|
driver: local-persist
|
|
driver_opts:
|
|
mountpoint: $HOST_CONFIG_PATH/readarr |