Actualiser docker-compose/arr/docker-compose.yml

This commit is contained in:
toma 2026-01-27 22:09:32 +01:00
parent 5041d75515
commit 5ed0491a8b

View File

@ -1,5 +1,5 @@
services: services:
# --- Gestion des téléchargements --- # --- Indexers & Download ---
prowlarr: prowlarr:
image: linuxserver/prowlarr:latest image: linuxserver/prowlarr:latest
container_name: prowlarr container_name: prowlarr
@ -13,7 +13,7 @@ services:
- 9696:9696 - 9696:9696
restart: unless-stopped restart: unless-stopped
networks: networks:
- media_network - media_net
qbittorrent: qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest image: lscr.io/linuxserver/qbittorrent:latest
@ -28,7 +28,7 @@ services:
# Anciens mappings (gardés pour compatibilité avec tes torrents actuels) # Anciens mappings (gardés pour compatibilité avec tes torrents actuels)
- /data/downloads:/downloads/d1 - /data/downloads:/downloads/d1
- /data2/downloads:/downloads/d2 - /data2/downloads:/downloads/d2
# Nouveaux mappings (pour permettre les Hardlinks avec *arr) # Volumes unifiés pour les Hardlinks (Crucial)
- /data:/data - /data:/data
- /data2:/data2 - /data2:/data2
ports: ports:
@ -37,9 +37,9 @@ services:
- 6881:6881/udp - 6881:6881/udp
restart: unless-stopped restart: unless-stopped
networks: networks:
- media_network - media_net
# --- Gestion Vidéo (*arr) --- # --- Managers ---
sonarr: sonarr:
image: ghcr.io/hotio/sonarr image: ghcr.io/hotio/sonarr
container_name: sonarr container_name: sonarr
@ -59,7 +59,7 @@ services:
- qbittorrent - qbittorrent
- prowlarr - prowlarr
networks: networks:
- media_network - media_net
radarr: radarr:
image: ghcr.io/hotio/radarr image: ghcr.io/hotio/radarr
@ -80,46 +80,42 @@ services:
- qbittorrent - qbittorrent
- prowlarr - prowlarr
networks: networks:
- media_network - media_net
# --- Gestion Livres (Calibre) --- # --- Interface & Requêtes ---
calibre: overseerr:
image: ghcr.io/linuxserver/calibre image: lscr.io/linuxserver/overseerr:latest
container_name: calibre container_name: overseerr
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=Europe/Paris - TZ=Europe/Paris
volumes: volumes:
- /opt/calibre/config:/config - /opt/overseerr:/config # Vérifie si tu utilisais ce chemin
- /data/downloads/complete/books:/uploads
- /opt/calibre/plugins:/plugins
- /opt/calibre/calibre_library:/Calibre_Library
ports: ports:
- 8084:8080 - 5055:5055
- 8081:8081 # J'ai corrigé le port mapping 8080:8081 qui semblait inversé ou conflit
restart: unless-stopped
networks:
- media_network
calibre-web:
image: ghcr.io/linuxserver/calibre-web
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
volumes:
- /opt/calibre/calibre-web:/config
- /opt/calibre/calibre_library:/Calibre_Library
ports:
- 8083:8083
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
- calibre - sonarr
- radarr
networks: networks:
- media_network - media_net
agregarr:
image: agregarr/agregarr:latest
container_name: agregarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Paris
volumes:
- /opt/agregarr:/config # Vérifie si tu utilisais ce chemin
ports:
- 7171:7171
restart: unless-stopped
networks:
- media_net
networks: networks:
media_network: media_net:
driver: bridge driver: bridge