Compose-Examples/examples/lidarr/docker-compose.yml

18 lines
541 B
YAML
Raw Normal View History

2023-02-28 18:18:29 +00:00
version: "2.1"
2023-03-01 10:08:44 +00:00
2023-02-28 18:18:29 +00:00
services:
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=1000
- PGID=1000
2023-03-01 10:08:44 +00:00
- TZ=Europe/Berlin
2023-02-28 18:18:29 +00:00
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/music:/music
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/downloads:/downloads # Should be the same as the download client's folder
ports:
- 8686:8686
2023-03-01 10:08:44 +00:00
restart: unless-stopped