Egg Repository

Pterodactyl Community Egg Repository

Yarr

Yarr is a selfhosted feed aggregator

Read Me

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.

Portdefault
App7070

Notes

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

Yolks
NameTag
ghcr.io/ptero-eggs/yolks:debianghcr.io/ptero-eggs/yolks:debian
Variables and Startup

Startup Command

./yarr -addr 0.0.0.0:{{SERVER_PORT}} -auth="{{USERNAME}}:{{PASSWORD}}" -db=./feed.sql

Variables

Username

The username used to log in to yarr

Environment Variable: USERNAME
Default Value: username
User Viewable:
User Editable:
Password

The password needed to log in to yarr

Environment Variable: PASSWORD
Default Value:
User Viewable:
User Editable:
Install Script
#!/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"
Installation Imagegolang:1.19.13-bookwormInstallation Entrypointbash