How to install sonar Episode 17 linuxserver arm image deprecated

If you need any help or would like to discuss our episodes please ask in here.
Post Reply
addicted2tech
Posts: 11
Joined: Fri Jul 22, 2022 2:09 pm

How to install sonar Episode 17 linuxserver arm image deprecated

Post by addicted2tech »

Linuxserver has deprecated this image for arm devices. The last supported tags for 32-bit ARM will be 3.0.8.1507-ls151 for the stable branch. This final image should still work. However, you won’t get any updates going forward. Please see this post. https://info.linuxserver.io/issues/2022-08-02-sonarr/. I haven’t found a replacement image thus far. Most likely due to the problems with mono it could be the end of Sonarr on arm devices unless it gets forked. If I find a workaround I will update this post and comment section on YouTube.
addicted2tech
Posts: 11
Joined: Fri Jul 22, 2022 2:09 pm

Re: How to install sonar Episode 17 linuxserver arm image deprecated

Post by addicted2tech »

Use the the following tag image to get Sonarr to work:

Code: Select all

---
version: "2.1"
services:
  sonarr:
    image: ghcr.io/linuxserver/sonarr:3.0.8.1507-ls151
    container_name: sonarr
    environment:
      - PUID=1001
      - PGID=100
      - TZ=Europe/London
    volumes:
      - /FOLDER/PATH/Appdata/Sonarr/config:/config
      - /FOLDER/PATH/Downloads:/downloads
      - /FOLDER/PATH/downloads/tv:/tv
      - /FOLDER/PATH/downloads/tv/kidstv:/kidstv #optional
      
    ports:
      - 8989:8989
    restart: unless-stopped
Post Reply