Plex Custom Channel fail "too many requests"?

Has anyone found a fix for this problem? If yes is there a dummies version of how to implement? The topics in the community are outdated and none work. I'm not a coder but can follow instructions if they are clear and complete?

Thank you

Should work if you're using the joagomez Plex for Channels docker

docker compose A docker-compose for every Channels-related extension -- suitable for Portainer-Stacks!

Plex-for-Channels
version: '3.9'
services:
  # GitHub home for this project with setup instructions: https://github.com/jgomez177/plex-for-channels
  # Docker container home for this project: https://ghcr.io/jgomez177/plex-for-channels
  plex-for-channels:
    image: ghcr.io/jgomez177/plex-for-channels:${TAG}
    container_name: plex-for-channels
    ports:
      - ${HOST_PORT}:${PLEX_PORT}
    environment:
      - PLEX_PORT=${PLEX_PORT}
      - PLEX_CODE=${PLEX_CODE}
    restart: unless-stopped

  # Default Environment variables can be found below under stderr -- copy and paste into Portainer-Stacks Environment variables section in Advanced mode
TAG=latest
HOST_PORT=7779
PLEX_PORT=7777
PLEX_CODE=local

Thank you,, I'll give this a go. I've never done a Docker before but it's time I learn it.

@RightOn Did you have any luck??? I'm in the same situation as you - totally new to Docker. I've got it installed on a Raspberry Pi 4B (using the Debian instructions). When I try to get it up and running, I get an error:

root@raspberrypi:/home/dave/git# docker run -d --restart unless-stopped --network=host -e PLEX_PORT=7000 -e PLEX_CODE=us_east --name  plex-for-channels ghcr.io/jgomez177/plex-for-channels
Unable to find image 'ghcr.io/jgomez177/plex-for-channels:latest' locally
latest: Pulling from jgomez177/plex-for-channels
docker: no matching manifest for linux/arm/v8 in the manifest list entries.
See 'docker run --help'.

I'm kinda lost, and feel like a dummy.