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.

Port default
App 7070

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
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
UsernameThe username used to log in to yarrUSERNAMEusernameYesYes
PasswordThe password needed to log in to yarrPASSWORDYesYes
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"