mirror of
https://github.com/vatax3/ranger.git
synced 2026-07-26 16:32:07 +00:00
Addon Stremio complet, films/séries/anime, contenu FR et international : - Multi-débrideurs avec priorité (AllDebrid, Real-Debrid, TorBox, DebridLink) - StremThru intégré (contournement blocage IP datacenter) - Compat AIOStreams (tags [XX+], statut cache) - TMDB + fallback Cinemeta, détection anime, numérotation absolue - Trackers publics (YGG, TPB, EZTV, Nyaa) + privés (C411, Torr9, Tr4ker, NekoBT, ABN, UNIT3D) + Torznab générique (Jackett/Prowlarr) - Filtres taille/résolution/codec/langue, tri multi-critères, déduplication - Cache SQLite (dispo débrideur + recherches + métadonnées) - Page /configure interactive, image Docker + docker-compose Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
23 lines
629 B
YAML
23 lines
629 B
YAML
services:
|
|
ranger:
|
|
build: .
|
|
image: ranger:latest
|
|
container_name: ranger
|
|
restart: unless-stopped
|
|
ports:
|
|
- "7000:7000"
|
|
environment:
|
|
- PORT=7000
|
|
- RANGER_DB=/data/ranger.db
|
|
# TTLs de cache (secondes) — décommenter pour surcharger
|
|
# - RANGER_TTL_CACHED=21600
|
|
# - RANGER_TTL_UNCACHED=1200
|
|
# - RANGER_TTL_SEARCH=1800
|
|
# Proxy sortant optionnel (si l'IP du VPS est bloquée sans StremThru)
|
|
# - HTTP_PROXY=http://user:pass@proxyhost:port
|
|
# - HTTPS_PROXY=http://user:pass@proxyhost:port
|
|
volumes:
|
|
- ranger_data:/data
|
|
|
|
volumes:
|
|
ranger_data:
|