Sign inSign up

glanced/reader

By glanced

Updated 6 months ago

Glanced Reader is a modern, self-hosted RSS reader.

Image
Content management system
1

2.5K

glanced/reader repository overview

Glanced Reader

A modern, self-hosted RSS/Atom feed reader.

Docker Pulls GitHub Stars

Features

  • Self-hosted: Full control over your data, runs on your hardware
  • Auto-refresh: Feeds update automatically, no manual checking
  • Folders & tags: Organize your reading your way
  • OPML import/export: Bring your feeds from other readers, leave when you want
  • Full-text search: Find articles across all your feeds instantly

Quick Start

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.

Option 2: Bundled Container

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

Environment Variables

Docker Compose
VariableDefaultDescription
POSTGRES_PASSWORDchangemePostgreSQL password
COOKIE_SECUREtrueSet secure flag on cookies (use HTTPS)
FEED_REFRESH_INTERVAL_MINUTES30Feed refresh interval in minutes
Bundled Container
VariableRequiredDefaultDescription
DATABASE_URLYes-PostgreSQL connection string
REDIS_URLYes-Redis connection string
COOKIE_SECURENotrueSet secure flag on cookies (HTTPS)
FEED_REFRESH_INTERVAL_MINUTESNo30Feed refresh interval in minutes

Image Variants

TagDescription
latestStandard image (use with docker compose)
bundledAll app services in one container

Supported Architectures

  • linux/amd64
  • linux/arm64

Documentation

Tag summary

Content type

Image

Digest

sha256:816d9414e

Size

117.5 MB

Last updated

6 months ago

docker pull glanced/reader