Commafeed is a lightweight, self-hosted RSS feed reader designed to replicate the simplicity and functionality of Google Reader. With its minimal system requirements and user-friendly interface, Commafeed is ideal for anyone looking to aggregate and manage their RSS feeds locally, ensuring privacy and control over their data.
The following docker-compose
configuration deploys Commafeed with persistence and resource efficiency:
services:
commafeed:
image: athou/commafeed:latest-h2
restart: unless-stopped
volumes:
- /home/josh/commafeed/data:/commafeed/data
deploy:
resources:
limits:
memory: 256M
ports:
- 8082:8082
Service Name: commafeed
Image: athou/commafeed:latest-h2
Restart Policy: unless-stopped
Volumes:
/home/josh/commafeed/data
on the host to /commafeed/data
in the container for persistent storage of feed data and settings.Resource Constraints:
Ports:
8082
of the host. Access Commafeed via:http://<your_server_ip>:8082
Self-Hosting Benefits:
Embedded H2 Database:
Lightweight Resource Usage:
Persistent Storage:
/commafeed/data
directory ensures your feed data and preferences survive container updates or restarts.Create the Docker Compose File
docker-compose.yml
.Deploy the Container
docker-compose up -d
Access the Web Interface
http://<your_server_ip>:8082
8082
via firewall rules if the service is intended for internal use only.To ensure your feed data and settings are safe:
sudo tar -czvf commafeed-backup.tar.gz /home/josh/commafeed/data
To update the Commafeed container:
docker-compose pull
docker-compose up -d