Initial commit: RSS feed viewer with Docker setup

This commit is contained in:
2026-01-29 16:44:30 +01:00
commit e14ec47990
11 changed files with 1618 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
web:
build: .
ports:
- "5000:5000"
environment:
# Edit these in the docker compose editor to change the feed/logo.
RSS_URL: "https://feeds.nos.nl/nosnieuwsalgemeen"
LOGO_URL: ""
# Optional: tweak cache TTL (seconds)
RSS_CACHE_TTL: "60"
PORT: "5000"