Files
Docker-Compose/Sonarr/docker-compose.yml
MohandL3G 9cf711fc67 Normalize quoting and whitespace in compose files
Standardize formatting across multiple docker-compose.yml files: convert single quotes to double quotes for ports/args, fix inconsistent newlines at EOF, remove trailing spaces and stray blank lines, and tidy comments. Reformat ListSync healthcheck into a YAML sequence for clarity. Remove the obsolete Immich/docker-compose.yml.old file. These are non-functional cleanup changes to improve consistency and readability.
2026-02-12 20:44:54 +02:00

17 lines
418 B
YAML

---
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Africa/Tripoli
volumes:
- C:\Docker\AppData\sonarr\data:/config
- C:\Docker\AppData\jellyfin\data\TV Shows:/tv #optional
- C:\Docker\AppData\sonarr\downloads:/downloads #optional
ports:
- 8989:8989
restart: unless-stopped