FreshRSS
April 3, 2020 — 14:31

Author: silver  Category: web  Comments: Off

FreshRSS is a self hostable RSS and Atom aggregator (https://freshrss.org) which can also be installed using Docker.

I’m using it myself for Security and general IT related news at https://rss.revlis.nl.

Here’s a Docker run example with persistent data storage and option to edit themes:

docker-freshrss.sh

#!/bin/sh
if ! docker network ls | grep -q freshrss-network; then
  docker network create freshrss-network
fi
docker run -d --restart unless-stopped --log-opt max-size=10m \
  -v freshrss-data:/var/www/FreshRSS/data \
  -v /opt/docker/freshrss/themes:/var/www/FreshRSS/p/themes \
  -e 'CRON_MIN=4,34' \
  -e TZ=Europe/Amsterdam \
  --net freshrss-network \
  -p 127.0.0.1:88:80 \
  --name freshrss freshrss/freshrss:latest
docker port freshrss








We use Matomo free and open source web analytics
We also use Jetpack WordPress.com Stats which honors DNT