19 lines
411 B
YAML
Executable File
19 lines
411 B
YAML
Executable File
services:
|
|
radarr:
|
|
image: ghcr.io/linuxserver/radarr:develop
|
|
container_name: radarr
|
|
restart: always
|
|
volumes:
|
|
- configradarr:/config
|
|
- torrents:/torrents
|
|
- /etc/localtime:/etc/localtime:ro
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
|
|
volumes:
|
|
configradarr:
|
|
driver: local-persist
|
|
driver_opts:
|
|
mountpoint: $HOST_CONFIG_PATH/radarr |