[text] s

Viewer

  1. version: "3"
  2. services:
  3.   qbittorrent:
  4.     image: lscr.io/linuxserver/qbittorrent:latest
  5.     container_name: qbittorrent
  6.     environment:
  7.       - PUID=1000
  8.       - PGID=1000
  9.       - TZ=Etc/UTC
  10.       - WEBUI_PORT=8085
  11.     volumes:
  12.       - qbittorrent-config:/config
  13.       - torrent-downloads:/downloads
  14.     ports:
  15.       - 8085:8085
  16.       - 6886:6886
  17.       - 6886:6886/udp
  18.     restart: unless-stopped
  19.  
  20.   radarr:
  21.     image: lscr.io/linuxserver/radarr:latest
  22.     container_name: radarr
  23.     environment:
  24.       - PUID=1000
  25.       - PGID=1000
  26.       - TZ=Etc/UTC
  27.     volumes:
  28.       - radarr-config:/config
  29.       - torrent-downloads:/downloads
  30.     ports:
  31.       - 7878:7878
  32.     restart: unless-stopped
  33.  
  34.   sonarr:
  35.     image: lscr.io/linuxserver/sonarr:latest
  36.     container_name: sonarr
  37.     environment:
  38.       - PUID=1000
  39.       - PGID=1000
  40.       - TZ=Etc/UTC
  41.     volumes:
  42.       - sonarr-config:/config
  43.       - torrent-downloads:/downloads
  44.     ports:
  45.       - 8989:8989
  46.     restart: unless-stopped
  47.  
  48.  
  49.   jackett:
  50.     image: lscr.io/linuxserver/jackett:latest
  51.     container_name: jackett
  52.     environment:
  53.       - PUID=1000
  54.       - PGID=1000
  55.       - TZ=Etc/UTC
  56.       - AUTO_UPDATE=true #optional
  57.     volumes:
  58.       - jackett-config:/config
  59.       - jackett-blackhole:/downloads
  60.     ports:
  61.       - 9117:9117
  62.     restart: unless-stopped
  63.  
  64.   jellyseerr:
  65.     image: fallenbagel/jellyseerr:latest
  66.     container_name: jellyseerr
  67.     environment:
  68.       - LOG_LEVEL=debug
  69.       - TZ=Etc/UTC
  70.     ports:
  71.       - 5055:5055
  72.     volumes:
  73.       - jellyseerr-config:/config
  74.     restart: unless-stopped
  75.  
  76.   jellyfin:
  77.     image: lscr.io/linuxserver/jellyfin:latest
  78.     container_name: jellyfin
  79.     volumes:
  80.       - jellyfin-config:/config
  81.       - torrent-downloads:/data
  82.     restart: 'unless-stopped'
  83.     ports:
  84.       - 8096:8096
  85.       - 8920:8920
  86.       - 7359:7359/udp
  87.     # Optional - alternative address used for autodiscovery
  88.     environment:
  89.       - PUID=1000
  90.       - PGID=1000
  91.       - TZ=Etc/UTC
  92.       - JELLYFIN_PublishedServerUrl=192.168.1.69
  93.     # Optional - may be necessary for docker healthcheck to pass if running in host network mode
  94.     extra_hosts:
  95.       - "host.docker.internal:host-gateway"
  96.  
  97. volumes:
  98.   torrent-downloads:
  99.   radarr-config:
  100.   sonarr-config:
  101.   jackett-config:
  102.   jackett-blackhole:
  103.   jellyseerr-config:
  104.   jellyfin-config:
  105.   qbittorrent-config:
  106.  
  107.  

Editor

You can edit this paste and save as new:


File Description
  • s
  • Paste Code
  • 10 Dec-2023
  • 2.39 Kb
You can Share it: