Skip to content

This document is a WORK IN PROGRESS.
This is just a quick personal cheat sheet: treat its contents with caution!


Fresh RSS

Fresh RSS is a self hosted feed (RSS) reader.

Reference(s)

Table of contents


With Docker

Prerequisite(s)

Install and run

$ docker run -d --restart unless-stopped --log-opt max-size=10m \
  -p 36006:80 \
  -e TZ=Europe/Paris \
  -e 'CRON_MIN=1,31' \
  -v /var/www/FreshRSS/data:/var/www/FreshRSS/data \
  -v /var/www/FreshRSS/extensions:/var/www/FreshRSS/extensions \
  --name freshrss \
  freshrss/freshrss

Update

TODO

How to add an extension

The first step is to put the extension into your FreshRSS extension directory:

$ cd /var/www/FreshRSS/extensions/
$ wget https://github.com/kevinpapst/freshrss-youtube/archive/master.zip
$ unzip master.zip
$ mv freshrss-youtube-master/xExtension-YouTube .
$ rm -rf freshrss-youtube-master/

Then switch to your browser https://localhost:36006/FreshRSS/p/i/?c=extension and activate it.


If this cheat sheet has been useful to you, then please consider leaving a star here.