MirrorNest
← Alle Anleitungen

Tiny Tiny RSS

Tiny Tiny RSS (TT-RSS) is a self-hosted, web-based news feed (RSS/Atom) reader and aggregator, officially deployed via a documented Docker Compose stack (nginx, FPM app, PostgreSQL, and an updater service).

Zielsystem: Any Docker hostProductivityOffizielle Website ↗Offizielle Dokumentation ↗
Diese Anleitung basiert auf der offiziellen Dokumentation von Tiny Tiny RSS, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
  1. 1Create a project directory

    Create a directory for the installation and place the official .env and docker-compose.yml templates from the Installation Guide inside it.

  2. 2Configure the .env file

    Set database credentials and the HTTP port TT-RSS will listen on.

    Key variables: TTRSS_DB_USER, TTRSS_DB_NAME, TTRSS_DB_PASS, HTTP_PORT (default 127.0.0.1:8280).

  3. 3Start the stack

    docker compose up -d
  4. 4Verify and log in

    Log in as admin (a random password is generated in the app logs if ADMIN_USER_PASS is not set).

    docker compose ps
    docker compose logs

    Default access: http://127.0.0.1:8280/tt-rss. Podman is explicitly not supported.