Skip to content

Instantly share code, notes, and snippets.

@hungdev
Created December 1, 2024 04:16
Show Gist options
  • Save hungdev/96d324fc3827bc8f3a210d056f82bb4e to your computer and use it in GitHub Desktop.
Save hungdev/96d324fc3827bc8f3a210d056f82bb4e to your computer and use it in GitHub Desktop.
arr suite
version: '3.8'

services:
  radarr: 
    image: linuxserver/radarr:4.1.0
    container_name: radarr
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    volumes:
      - ./volumes/radarr/config:/config
      - ./movies:/movies
    ports:
      - 10000:7878

  sonarr:
    image: linuxserver/sonarr:3.0.8
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    volumes:
      - ./volumes/sonarr/config:/config
      - ./movies:/downloads
    ports:
      - 10001:8989
    restart: unless-stopped

  jackett:
    image: linuxserver/jackett:0.20.1575
    container_name: jackett
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    volumes:
      - ./volumes/jackett/config:/config
      - ./movies:/downloads
    ports:
      - 10002:9117
    restart: unless-stopped

  plex:
    image: linuxserver/plex:1.28.0
    container_name: plex
    environment:
      - PUID=1000
      - PGID=1000
      - VERSION=docker
    ports:
      - 10003:32400
    volumes:
      - ./volumes/plex/config:/config
      - ./volumes/plex/tv:/tv
      - ./movies:/movies
    restart: unless-stopped

  deluge:
    image: lscr.io/linuxserver/deluge:latest
    container_name: deluge
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    volumes:
      - ./volumes/deluge/config:/config
      - ./movies:/downloads
    ports:
      - 10004:8112
      - 6881:6881
      - 6881:6881/udp
    restart: unless-stopped

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment