Fusion
Lightweight, self-hosted RSS and Atom feed reader
Alternative to: feedly, inoreader, feedbin

Fusion is a lightweight, self-hosted RSS and Atom feed reader focused on a fast, distraction-free reading workflow with unread tracking, bookmarks, and full-text search. It supports the Fever API so third-party apps like Reeder and Unread can connect to it, ships as a single binary or Docker container, and deliberately leaves out AI features to stay simple.
Fusion Docker Compose example
Self-host Fusion on your own server, homelab, or VPS starting from this Docker Compose example.
It runs Fusion in Docker containers using the official ghcr.io/0x2e/fusion:latest image, with persistent volumes and automatic restarts preconfigured.
Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.
services:
fusion:
image: ghcr.io/0x2e/fusion:latest
restart: unless-stopped
volumes:
- data:/data
environment:
# Password required to log in to the Fusion web UI.
FUSION_PASSWORD: "changeme"
volumes:
data:
Values set to changeme are required — replace them with your own
values before starting Fusion.
Prefer a managed setup? WinterFlow installs, configures, and updates Fusion for you using this same Docker Compose configuration.