Take control of your news consumption with a free, self-hostable feed aggregator. This lightweight yet powerful tool allows you to follow all your favorite websites, podcasts, and video channels in a single, centralized location. It is designed to be easy to work with while offering extensive customization options to fit your specific needs. You retain full ownership of your data by hosting it on your own server.
Key features include:
services:
freshrss:
image: freshrss/freshrss:latest
container_name: freshrss
hostname: freshrss
restart: unless-stopped
logging:
options:
max-size: 10m
ports:
- "8080:80"
environment:
- TZ=UTC
- CRON_MIN=1,31
volumes:
- ./data:/var/www/FreshRSS/data
- ./extensions:/var/www/FreshRSS/extensions
depends_on:
- db
db:
image: mariadb:10
container_name: freshrss-db
restart: unless-stopped
logging:
options:
max-size: 10m
environment:
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
- MYSQL_DATABASE=${DB_NAME}
- MYSQL_USER=${DB_USER}
- MYSQL_PASSWORD=${DB_PASSWORD}
volumes:
- ./db-data:/var/lib/mysqlDB_ROOT_PASSWORD=super_secret_root_password
DB_NAME=freshrss
DB_USER=freshrss
DB_PASSWORD=secure_freshrss_passwordAuto-fetched about 1 hour ago
Auto-fetched about 1 hour ago