lobsterss serves up customisable lobste.rs RSS feeds, inspired by hnrss.
Todo:
- Fetch multiple pages
- Configurable search in url and desc
- json output
- Always link to lobste.rs comments instead of outbound link
With Compose:
services:
lobsterss:
image: ghcr.io/ericbriese/lobsterss:latest
container_name: lobsterss
ports:
- "8000:8000"
restart: unless-stoppedThen open http://localhost:8000.
To build the image yourself instead:
git clone https://github.com/ericbriese/lobsterss
cd lobsterss
docker build -t lobsterss .
docker run -p 8000:8000 lobsterss