16 lines
364 B
YAML
16 lines
364 B
YAML
---
|
|
services:
|
|
lidarr:
|
|
image: lscr.io/linuxserver/lidarr:latest
|
|
container_name: lidarr
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
volumes:
|
|
- /path/to/lidarr/config:/config
|
|
- /path/to/music:/music #optional
|
|
- /path/to/downloads:/downloads #optional
|
|
ports:
|
|
- 8686:8686
|
|
restart: unless-stopped |