FreshRSS is a self-hosted RSS aggregator that helps you collect and read articles from blogs, news sites and more. It supports multiple users, OPML import/export and mobile-friendly viewing. You can categorize feeds, mark articles as read/unread and customize the interface. A great choice for those who prefer owning their news reader data.

Setup

docker-compose.yaml

version: '3'

networks:
  docker_net:
    external: true

volumes:
  config:

services:
  freshrss:
    image: lscr.io/linuxserver/freshrss:latest
    container_name: freshrss
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Vienna
    volumes:
      - config:/config
    ports:
      - 8180:80
    networks:
      - docker_net

-> change base url in config.php of fresh rss to your domain


Sources