Yarr

applications
Report Issue

Yarr is a selfhosted feed aggregator

Contributors:
README

Yar

From their Github

Host your own web based RSS feed aggregator yarr.

Server Ports

Ports required to run the server in a table format.

Port default
App 7070

Notes

7070 is the default port, but any port can be used.

Docker Images (1)
Name Image
ghcr.io/ptero-eggs/yolks:debian ghcr.io/ptero-eggs/yolks:debian
Startup Command
./yarr -addr 0.0.0.0:{{SERVER_PORT}} -auth="{{USERNAME}}:{{PASSWORD}}" -db=./feed.sql
Variables (2)

Username

The username used to log in to yarr

Environment:
USERNAME
Default:
username
User Viewable:
User Editable:
Rules:
required|string|alpha_dash

Password

The password needed to log in to yarr

Environment:
PASSWORD
Default:
None
User Viewable:
User Editable:
Rules:
required|string|alpha_dash
Installation Script
Container: golang:1.19.13-bookworm
Entrypoint: bash
#!/bin/bash

cd /mnt/server

mkdir yarr_source
git clone https://github.com/nkanaev/yarr yarr_source

cd yarr_source

make build_default  # -> _output/yarr

cp _output/yarr ../yarr
cd ../

rm -rf yarr_source

chmod +x yarr

echo "Install complete"