Glanced Reader is a modern, self-hosted RSS reader.
2.5K
A modern, self-hosted RSS/Atom feed reader.
Standard multi-container setup with PostgreSQL, Redis, and app services.
git clone https://github.com/glancedrss/reader.git
cd reader
docker compose up -d
Everything included - PostgreSQL, Valkey, and app services. Just run and go.
Single container with all app services. Requires external PostgreSQL and Redis.
Best for existing database infrastructure.
docker run -d \
--name glanced-reader \
-p 2077:2077 \
-v $(pwd)/data:/data \
-e DATABASE_URL=postgresql://user:pass@host:5432/reader \
-e REDIS_URL=redis://host:6379 \
glanced/reader:bundled
| Variable | Default | Description |
|---|---|---|
POSTGRES_PASSWORD | changeme | PostgreSQL password |
COOKIE_SECURE | true | Set secure flag on cookies (use HTTPS) |
FEED_REFRESH_INTERVAL_MINUTES | 30 | Feed refresh interval in minutes |
| Variable | Required | Default | Description |
|---|---|---|---|
DATABASE_URL | Yes | - | PostgreSQL connection string |
REDIS_URL | Yes | - | Redis connection string |
COOKIE_SECURE | No | true | Set secure flag on cookies (HTTPS) |
FEED_REFRESH_INTERVAL_MINUTES | No | 30 | Feed refresh interval in minutes |
| Tag | Description |
|---|---|
latest | Standard image (use with docker compose) |
bundled | All app services in one container |
linux/amd64linux/arm64Content type
Image
Digest
sha256:816d9414e…
Size
117.5 MB
Last updated
6 months ago
docker pull glanced/reader