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:
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-stoppedDB_NAME=commafeed
DB_USER=commafeed
DB_PASSWORD=your_super_secret_passwordAuto-fetched about 11 hours ago
Auto-fetched about 11 hours ago