Neinhalt

arr guideline yml

Dec 10th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.65 KB | None | 0 0
  1. version: "3.2"
  2. services:
  3. # Radarr - https://hotio.dev/containers/radarr/
  4.   radarr:
  5.     container_name: radarr
  6.     image: ghcr.io/hotio/radarr:latest
  7.     restart: unless-stopped
  8.     logging:
  9.       driver: json-file
  10.     network_mode: bridge
  11.     ports:
  12.      - 7878:7878
  13.     environment:
  14.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  15.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  16.       - TZ=Europe/Amsterdam # Change to your timezone
  17.     volumes:
  18.      - /etc/localtime:/etc/localtime:ro
  19.       - /volume1/docker/appdata/radarr:/config # Change "/volume1/docker/appdata/radarr" with the path your config will be.
  20.       - /volume1/data:/data # Change "/volume1/data" with the path where your library + torrent/usenet downloads both are.
  21. # Sonarr - https://hotio.dev/containers/sonarr/
  22.   sonarr:
  23.     container_name: sonarr
  24.     image: ghcr.io/hotio/sonarr:nightly
  25.     restart: unless-stopped
  26.     logging:
  27.       driver: json-file
  28.     network_mode: bridge
  29.     ports:
  30.      - 8989:8989
  31.     environment:
  32.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  33.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  34.       - TZ=Europe/Amsterdam # Change to your timezone
  35.     volumes:
  36.      - /etc/localtime:/etc/localtime:ro
  37.       - /volume1/docker/appdata/sonarr:/config # Change "/volume1/docker/appdata/sonarr" with the path your config will be.
  38.       - /volume1/data:/data # Change "/volume1/data" with the path where your library + torrent/usenet downloads both are.
  39. # Bazarr - https://hotio.dev/containers/bazarr/
  40.   bazarr:
  41.     container_name: bazarr
  42.     image: ghcr.io/hotio/bazarr:nightly
  43.     restart: unless-stopped
  44.     logging:
  45.       driver: json-file
  46.     network_mode: bridge
  47.     ports:
  48.      - 6767:6767
  49.     environment:
  50.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  51.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  52.       - TZ=Europe/Amsterdam # Change to your timezone
  53.     volumes:
  54.      - /etc/localtime:/etc/localtime:ro
  55.       - /volume1/docker/appdata/bazarr:/config # Change "/volume1/docker/appdata/bazarr" with the path your config will be.
  56.       - /volume1/data/media:/data/media # Change "/volume1/data/media" with the path where your library are(sonarr+radarr).
  57. # NZBGet - https://hotio.dev/containers/nzbget/
  58.   nzbget:
  59.     container_name: nzbget
  60.     image: ghcr.io/hotio/nzbget:latest
  61.     restart: unless-stopped
  62.     logging:
  63.       driver: json-file
  64.     network_mode: bridge
  65.     ports:
  66.      - 6789:6789/tcp
  67.     environment:
  68.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  69.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  70.       - TZ=Europe/Amsterdam # Change to your timezone
  71.     volumes:
  72.      - /etc/localtime:/etc/localtime:ro
  73.       - /volume1/docker/appdata/nzbget:/config:rw # Change "/volume1/docker/appdata/nzbget" with the path your config will be.
  74.       - /volume1/data/usenet:/data/usenet:rw # Change "/volume1/data/usenet" with the path your usenet data ends up in.
  75. # qBittorrent - https://docs.linuxserver.io/images/docker-qbittorrent
  76.   qbittorrent:
  77.     container_name: qbittorrent
  78.     image: ghcr.io/linuxserver/qbittorrent
  79.     restart: unless-stopped
  80.     logging:
  81.       driver: json-file
  82.     network_mode: bridge
  83.     ports:
  84.      - 6881:6881
  85.       - 6881:6881/udp
  86.       - 8080:8080
  87.     environment:
  88.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  89.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  90.       - TZ=Europe/Amsterdam # Change to your timezone
  91.       - UMASK_SET=022
  92.       - WEBUI_PORT=8080
  93.     volumes:
  94.      - /etc/localtime:/etc/localtime:ro
  95.       - /volume1/docker/appdata/qbittorrent:/config:rw # Change "/volume1/docker/appdata/qbittorrent" with the path your config will be.
  96.       - /volume1/data/torrents:/data/torrents:rw # Change "/volume1/data/torrents" with the path your usenet data ends up in.
  97. # Plex - https://hotio.dev/containers/plex/
  98.   plex:
  99.     container_name: plex
  100.     image: ghcr.io/hotio/plex
  101.     restart: unless-stopped
  102.     logging:
  103.       driver: json-file
  104.     network_mode: bridge
  105.     ports:
  106.      - 32400:32400
  107.     environment:
  108.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  109.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  110.       - TZ=Europe/Amsterdam # Change to your timezone
  111.       - UMASK=002
  112.       - ARGS=
  113.       - DEBUG=no
  114.       - PLEX_CLAIM=
  115.       - ADVERTISE_IP=
  116.       - ALLOWED_NETWORKS=
  117.       - PLEX_PASS=no
  118.     volumes:
  119.      - /etc/localtime:/etc/localtime:ro
  120.       - /volume1/docker/appdata/plex:/config:rw # Change "/volume1/docker/appdata/plex" with the path your config will be.
  121.       - /volume1/data/media:/data/media:rw # Change "/volume1/data/media" with the path where your library are(sonarr+radarr).
  122.       - /tmp:/transcode:rw
  123. # Tautulli - https://hotio.dev/containers/tautulli/
  124.   tautulli:
  125.     container_name: tautulli
  126.     image: ghcr.io/hotio/tautulli
  127.     restart: unless-stopped
  128.     logging:
  129.       driver: json-file
  130.     network_mode: bridge
  131.     ports:
  132.      - 8181:8181
  133.     environment:
  134.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  135.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  136.       - TZ=Europe/Amsterdam # Change to your timezone
  137.       - UMASK=002
  138.       - ARGS=
  139.       - DEBUG=no
  140.     volumes:
  141.      - /etc/localtime:/etc/localtime:ro
  142.       - /volume1/docker/appdata/tautulli:/config:rw # Change "/volume1/docker/appdata/plex" with the path your config will be.
  143. # Watchtower (automatic docker container updater) - https://github.com/containrrr/watchtower
  144.   watchtower:
  145.     container_name: watchtower
  146.     image: containrrr/watchtower
  147.     restart: unless-stopped
  148.     logging:
  149.       driver: json-file
  150.     network_mode: bridge
  151.     environment:
  152.      - PUID=1026 # you must find out your PUID through SSH, type in terminal: id $user
  153.       - PGID=100 # you must find out your PGID through SSH, type in terminal: id $user
  154.       - TZ=Europe/Amsterdam # Change to your timezone
  155.       - UMASK=022
  156.       - WATCHTOWER_CLEANUP=true
  157.       - WATCHTOWER_INCLUDE_STOPPED=false
  158.       - WATCHTOWER_MONITOR_ONLY=false
  159.       - WATCHTOWER_SCHEDULE=0 0 4 * * * # use cron to change update interval set at 4am.
  160.       - WATCHTOWER_TIMEOUT=10s
  161.     volumes:
  162.      - /etc/localtime:/etc/localtime:ro
  163.       - /var/run/docker.sock:/var/run/docker.sock
Add Comment
Please, Sign In to add comment