Any good RSS Feed service for self-hosting?

savbran@feddit.it to Selfhosted@lemmy.world – 44 points –

Hi guys, do you know if there is a good RSS Feed service that can be self-hosted which also exposes a good front-end to read the subscribed news? Thanks in advance.

34

You are viewing a single comment

I use Yarr (Yet Another RSS Reader). It can be easily deployed with Docker Compose and does the job nicely:

https://github.com/nkanaev/yarr

Just found it and tried on my home server, it works:

version: '3.3'
services:
  yarr:
    container_name: yarr
    image: maskalicz/yarr:latest
    ports:
    - 7070:7070
    volumes:
    - ./yarr-data:/data:rw

Anyway, it just have one view mode with 3 panels and it's not customizable. At the moment, the most featured and exstesible RSS Feed service seems to be FreshRSS as suggested in the thread by @specseaweed@lemmy.world.

2 more...