← すべてのガイド
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.
このガイドは上記リンク先にあるFreshRSS公式ドキュメントをもとに作成されています。ディストリビューションやプロジェクトのバージョンは時間とともに変わるため、本番サーバーでこれらのコマンドを実行する前に、必ず公式ドキュメントで正確なパッケージ名・バージョン名を確認してください。
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.