commit 7e8752f48e9feb2e47441d15f2db0b43f4c002db Author: stephane.david Date: Fri Jul 25 09:52:05 2025 +0200 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..4597eb6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +services: + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=1026 + - PGID=100 + - TZ=Etc/Paris + volumes: + - /volume1/docker/sonarr/data:/config + - /volume1/Datas/Séries:/tv #optional + - /volume1/Datas/_ToDownload:/downloads #optional + ports: + - 8989:8989 + restart: always \ No newline at end of file