commit 06b0d5b032187b0b5b61e8dba4801b73994b9b18 Author: stephane.david Date: Wed Feb 12 09:59:58 2025 +0100 First version in production diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..45c74e2 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3.9' +services: + lidarr: + image: ghcr.io/linuxserver/lidarr:latest + container_name: LIDARR + healthcheck: + test: curl -f http://localhost:8686/ || exit 1 + restart: on-failure:5 + 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 \ No newline at end of file