this post was submitted on 07 Jan 2024
45 points (89.5% liked)

Selfhosted

60482 readers
1088 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.

  8. AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] darkl1nk@lemmy.ml 5 points 2 years ago* (last edited 2 years ago) (2 children)

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

[–] savbran@feddit.it 2 points 2 years ago

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.