version: "3.2" services: radarr: &common_def container_name: radarr image: ghcr.io/hotio/radarr:latest restart: unless-stopped logging: driver: json-file ports: - 7878:7878 environment: - PUID=1000 - PGID=1000 - TZ=Australia/Melbourne volumes: # - /etc/localtime:/etc/localtime:ro - /mnt/d/arr_stack/docker/appdata/radarr:/config - /mnt/d/arr_stack/data:/data sonarr: <<: *common_def container_name: sonarr image: ghcr.io/hotio/sonarr:latest ports: - 8989:8989 volumes: # - /etc/localtime:/etc/localtime:ro - /mnt/d/arr_stack/docker/appdata/sonarr:/config - /mnt/d/arr_stack/data/:/data # bazarr: # <<: *common_def # container_name: bazarr # image: ghcr.io/hotio/bazarr:latest # ports: # - 6767:6767 # volumes: # # - /etc/localtime:/etc/localtime:ro # - /mnt/d/arr_stack/docker/appdata/bazarr:/config # - /mnt/d/arr_stack/data/media:/data/media # sabnzbd: # <<: *common_def # container_name: sabnzbd # image: ghcr.io/hotio/sabnzbd:latest # ports: # - 8080:8080 # - 9090:9090 # volumes: # # - /etc/localtime:/etc/localtime:ro # - /mnt/d/arr_stack/docker/appdata/sabnzbd:/config # - /mnt/d/arr_stack/data/usenet:/data/usenet:rw prowlarr: <<: *common_def container_name: prowlarr image: ghcr.io/hotio/prowlarr:latest ports: - "9696:9696" volumes: # - /etc/localtime:/etc/localtime:ro - /mnt/d/arr_stack/docker/appdata/prowlarr:/config plex: container_name: plex image: ghcr.io/hotio/plex:latest restart: unless-stopped logging: driver: json-file environment: # - PLEX_ADVERTISE_URL # - PLEX_NO_AUTH_NETWORKS - PLEX_BETA_INSTALL=false - PLEX_PURGE_CODECS=false ports: - 32400:32400 - 1900:1900/udp - 5353:5353/udp - 8324:8324 - 32410:32410/udp - 32412:32412/udp - 32413:32413/udp - 32414:32414/udp - 32469:32469 volumes: - /mnt/d/arr_stack/docker/appdata/plex:/config # - /:/transcode - /mnt/d/arr_stack/data:/data qbittorrent: <<: *common_def container_name: qbittorrent image: ghcr.io/hotio/qbittorrent ports: - "8080:8080" environment: - WEBUI_PORTS=8080/tcp,8080/udp volumes: - /mnt/d/arr_stack/docker/appdata/qbittorrent:/config - /mnt/d/arr_stack/data:/data flaresolverr: <<: *common_def image: ghcr.io/flaresolverr/flaresolverr:latest container_name: flaresolverr environment: - LOG_LEVEL=${LOG_LEVEL:-info} - LOG_HTML=${LOG_HTML:-false} - CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none} ports: - "8191:8191"