Favicon of CommaFeed

CommaFeed

Discover a free, open-source RSS reader inspired by Google Reader. Organize your favorite feeds, read them online, and enjoy a clean, clutter-free interface.

Take control of your news consumption with a clean, open-source feed reader. Inspired by the simplicity of the original Google Reader, this tool provides a straightforward way to follow your favorite websites, blogs, and news sources without algorithmic interference or advertisements. You can host it on your own server for complete privacy and data ownership, or use the publicly available instance to get started immediately.

Key features include:

  • Multiple Feed Formats: Supports RSS, Atom, and JSON feeds.
  • Web-Based Interface: Access your feeds from any device with a web browser.
  • Efficient Navigation: Use keyboard shortcuts to quickly browse through articles.
  • Feed Organization: Group your subscriptions into customizable categories.
  • Open Source: A free, community-driven project that you can trust and contribute to.
  • Browser Extensions: Available for Chrome and Firefox for easy subscription management.

Directory Structure

commafeed
commafeed-data
postgres-data
.env
docker-compose.yml

docker-compose.yml

services:
  commafeed:
    image: athou/commafeed:latest
    container_name: commafeed
    ports:
      - "8082:8082"
    environment:
      - CF_DATABASE_URL=jdbc:postgresql://db:5432/${DB_NAME}
      - CF_DATABASE_USER=${DB_USER}
      - CF_DATABASE_PASSWORD=${DB_PASSWORD}
    volumes:
      - ./commafeed-data:/commafeed/data
    depends_on:
      - db
    restart: unless-stopped

  db:
    image: postgres:15-alpine
    container_name: commafeed_db
    environment:
      - POSTGRES_DB=${DB_NAME}
      - POSTGRES_USER=${DB_USER}
      - POSTGRES_PASSWORD=${DB_PASSWORD}
    volumes:
      - ./postgres-data:/var/lib/postgresql/data
    restart: unless-stopped

.env

DB_NAME=commafeed
DB_USER=commafeed
DB_PASSWORD=your_super_secret_password
Categories:

Share:

Ad
Favicon

 

  
 

Similar to CommaFeed

Favicon

 

  
  
Favicon

 

  
  
Favicon