MirrorNest
← Tüm kılavuzlar

FreshRSS

A self-hosted RSS/Atom feed aggregator with a fast, customizable interface, multi-user support, and extensions for things like full-text article fetching.

Hedef: Any Docker hostProductivityResmi ana sayfa ↗Resmi belgeler ↗
Bu kılavuz, yukarıda bağlantısı verilen FreshRSS kendi resmi belgelerinden derlenmiştir — dağıtım ve proje sürümleri zamanla değiştiğinden, bu komutları bir üretim sunucusunda çalıştırmadan önce tam paket/sürüm adlarını her zaman orada kontrol edin.
  1. 1Run the container

    docker run -d --restart unless-stopped --log-opt max-size=10m \ -p 8080:80 \ -e TZ=Europe/Paris \ -e CRON_MIN=1,31 \ -v freshrss_data:/var/www/FreshRSS/data \ -v freshrss_extensions:/var/www/FreshRSS/extensions \ --name freshrss \ freshrss/freshrss

    CRON_MIN schedules automatic feed refreshes; adjust TZ to your timezone.

  2. 2Finish setup via the web wizard

    Browse to the server and complete the installation wizard, or run it non-interactively from the CLI instead.

    open http://localhost:8080
  3. 3Optional: unattended CLI setup

    docker exec --user www-data freshrss cli/do-install.php --default-user freshrss
    docker exec --user www-data freshrss cli/create-user.php --user freshrss --password freshrss

    Use --user apache instead of www-data if you're running the Alpine-based image.