MirrorNest
← Todos os guias

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.

Destino: Any Docker hostProductivitySite oficial ↗Documentação oficial ↗
Este guia foi elaborado a partir da documentação oficial do FreshRSS, ligada acima — verifique sempre lá os nomes exatos dos pacotes/versões antes de executar estes comandos num servidor de produção, uma vez que as versões da distribuição e do projeto mudam com o tempo.
  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.