18 lines
420 B
YAML
18 lines
420 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
readarr:
|
||
|
image: lscr.io/linuxserver/readarr:develop
|
||
|
container_name: readarr
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Europe/London
|
||
|
volumes:
|
||
|
- /kubernetes-volumes/readarr/config:/config
|
||
|
- /kubernetes-volumes/readarr/books:/books
|
||
|
- /kubernetes-volumes/readarr/downloads:/downloads
|
||
|
ports:
|
||
|
- 8787:8787
|
||
|
restart: unless-stopped
|