From 06b0d5b032187b0b5b61e8dba4801b73994b9b18 Mon Sep 17 00:00:00 2001 From: "stephane.david" Date: Wed, 12 Feb 2025 09:59:58 +0100 Subject: [PATCH] First version in production --- docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docker-compose.yml 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