18 lines
369 B
YAML
Executable File
18 lines
369 B
YAML
Executable File
services:
|
|
lidarr:
|
|
image: ghcr.io/linuxserver/lidarr:develop
|
|
container_name: lidarr
|
|
restart: always
|
|
volumes:
|
|
- configlidarr:/config
|
|
- torrents:/torrents
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
|
|
volumes:
|
|
configlidarr:
|
|
driver: local-persist
|
|
driver_opts:
|
|
mountpoint: $HOST_CONFIG_PATH/lidarr |