This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/miniflux
Renovate Bot ff4f26d245 Update postgres Docker tag to v13.3 2021-05-14 21:00:58 +00:00
..
.env.example Improved miniflux config 2021-04-23 14:53:05 +02:00
README.md Started Miniflux README 2021-01-06 22:18:55 +01:00
docker-compose.yml Update postgres Docker tag to v13.3 2021-05-14 21:00:58 +00:00

README.md

Miniflux

Miniflux is a minimalist and opinionated feed reader.

This description sums up Miniflux pretty well. It's very simple to setup and operate, yet does exactly what it's supposed to: it manages RSS feeds.

Environment variables

Not much configuration is required by default to get things up and running.

For the database, you have the usual PostgreSQL stuff:

  • POSTGRES_DB: database name
  • POSTGRES_USER: main user of the database
  • POSTGRES_PASSWORD: password for main user

For Miniflux, I used the following defaults:

  • DATABASE_URL: this URL defines how to connect to the database. It follows the form postgres://POSTGRES_USER:POSTGRES_PASSWORD@db/POSTGRES_DB?sslmode=disable
  • RUN_MIGRATIONS: this lets Miniflux auto-migrate the database when needed (this is especially useful during initial startup)
  • CREATE_ADMIN: this allows us to create an admin account using env vars
  • ADMIN_USERNAME: admin username
  • ADMIN_PASSWORD: admin password

Miniflux has many other variables you can set, which you can find here.