MirrorNest
← All guides

Miniflux

A minimalist, no-frills RSS and Atom feed reader focused on speed and simplicity, with no ads, tracking, or unnecessary features.

Target: Any Docker hostProductivityOfficial homepage ↗Official docs ↗
This guide is synthesized from Miniflux's own official documentation, linked above — always cross-check exact package/version names there before running these commands on a production server, since distro and project versions move over time.
  1. 1Create a docker-compose.yml

    services: miniflux: image: miniflux/miniflux:latest ports: - "80:8080" depends_on: db: condition: service_healthy environment: - DATABASE_URL=postgres://miniflux:secret@db/miniflux?sslmode=disable - RUN_MIGRATIONS=1 - CREATE_ADMIN=1 - ADMIN_USERNAME=admin - ADMIN_PASSWORD=test123 db: image: postgres:18 environment: - POSTGRES_USER=miniflux - POSTGRES_PASSWORD=secret - POSTGRES_DB=miniflux volumes: - miniflux-db:/var/lib/postgresql healthcheck: test: ["CMD", "pg_isready", "-U", "miniflux"] interval: 10s start_period: 30s volumes: miniflux-db:

    Change ADMIN_PASSWORD and the Postgres password before deploying for real use.

  2. 2Start Miniflux

    docker compose up -d
  3. 3Log in

    open http://localhost