← Todas las guías
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.
Esta guía se elaboró a partir de la documentación oficial de FreshRSS, enlazada arriba — verifica siempre ahí los nombres exactos de paquetes/versiones antes de ejecutar estos comandos en un servidor de producción, ya que las versiones de la distribución y del proyecto cambian con el tiempo.
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/freshrssCRON_MIN schedules automatic feed refreshes; adjust TZ to your timezone.
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:80803Optional: unattended CLI setup
docker exec --user www-data freshrss cli/do-install.php --default-user freshrssdocker exec --user www-data freshrss cli/create-user.php --user freshrss --password freshrssUse --user apache instead of www-data if you're running the Alpine-based image.