18 lines
433 B
YAML
18 lines
433 B
YAML
services:
|
|
lidarr:
|
|
image: ghcr.io/linuxserver/lidarr:latest
|
|
container_name: LIDARR
|
|
healthcheck:
|
|
test: curl -f http://localhost:8686/ || exit 1
|
|
restart: always
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- /volume1/Datas/Music:/music:rw
|
|
- /volume1/docker/lidarr/config:/config:rw
|
|
environment:
|
|
TZ: Europe/Paris
|
|
PGID: 100
|
|
PUID: 1026
|
|
ports:
|
|
- 8686:8686 |