Actualiser docker-compose/arr/docker-compose.yml
This commit is contained in:
parent
5041d75515
commit
5ed0491a8b
@ -1,5 +1,5 @@
|
||||
services:
|
||||
# --- Gestion des téléchargements ---
|
||||
# --- Indexers & Download ---
|
||||
prowlarr:
|
||||
image: linuxserver/prowlarr:latest
|
||||
container_name: prowlarr
|
||||
@ -13,7 +13,7 @@ services:
|
||||
- 9696:9696
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- media_network
|
||||
- media_net
|
||||
|
||||
qbittorrent:
|
||||
image: lscr.io/linuxserver/qbittorrent:latest
|
||||
@ -28,7 +28,7 @@ services:
|
||||
# Anciens mappings (gardés pour compatibilité avec tes torrents actuels)
|
||||
- /data/downloads:/downloads/d1
|
||||
- /data2/downloads:/downloads/d2
|
||||
# Nouveaux mappings (pour permettre les Hardlinks avec *arr)
|
||||
# Volumes unifiés pour les Hardlinks (Crucial)
|
||||
- /data:/data
|
||||
- /data2:/data2
|
||||
ports:
|
||||
@ -37,9 +37,9 @@ services:
|
||||
- 6881:6881/udp
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- media_network
|
||||
- media_net
|
||||
|
||||
# --- Gestion Vidéo (*arr) ---
|
||||
# --- Managers ---
|
||||
sonarr:
|
||||
image: ghcr.io/hotio/sonarr
|
||||
container_name: sonarr
|
||||
@ -59,7 +59,7 @@ services:
|
||||
- qbittorrent
|
||||
- prowlarr
|
||||
networks:
|
||||
- media_network
|
||||
- media_net
|
||||
|
||||
radarr:
|
||||
image: ghcr.io/hotio/radarr
|
||||
@ -80,46 +80,42 @@ services:
|
||||
- qbittorrent
|
||||
- prowlarr
|
||||
networks:
|
||||
- media_network
|
||||
- media_net
|
||||
|
||||
# --- Gestion Livres (Calibre) ---
|
||||
calibre:
|
||||
image: ghcr.io/linuxserver/calibre
|
||||
container_name: calibre
|
||||
# --- Interface & Requêtes ---
|
||||
overseerr:
|
||||
image: lscr.io/linuxserver/overseerr:latest
|
||||
container_name: overseerr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
volumes:
|
||||
- /opt/calibre/config:/config
|
||||
- /data/downloads/complete/books:/uploads
|
||||
- /opt/calibre/plugins:/plugins
|
||||
- /opt/calibre/calibre_library:/Calibre_Library
|
||||
- /opt/overseerr:/config # Vérifie si tu utilisais ce chemin
|
||||
ports:
|
||||
- 8084:8080
|
||||
- 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
|
||||
- 5055:5055
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- calibre
|
||||
- sonarr
|
||||
- radarr
|
||||
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:
|
||||
media_network:
|
||||
media_net:
|
||||
driver: bridge
|
||||
Loading…
Reference in New Issue
Block a user