Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.15 KB

miniflux-filter.md

File metadata and controls

38 lines (32 loc) · 1.15 KB

Miniflux-filter

Filter for miniflux - "mark as read" all unwanted articles.
I created that before miniflux added some basic filtering.
The difference from the built-in filtering is that the built-in filtering filters articles out BEFORE adding them to the DB, whereas this just marks them as read, so you can still go to "All" and see them if you wish.

The new version adds a UI for managing filters. The UI "borrows" the css & javascript from Miniflux, so the look & feel is (almost) exactly the same as the main app!

Screenshot

docker-compose.yml

---
version: '3'
services:
    miniflux-filter:
    image: tborychowski/miniflux-filter:latest
    container_name: miniflux-filter
    restart: unless-stopped
    environment:
        - TZ=Europe/Dublin
        # if not present - there will be no auth
        # - ADMIN_PASSWORD=admin1
        # ERROR, WARNING, INFO, DEBUG
        - LOG_LEVEL=INFO
    ports:
        - "5020:80"
    volumes:
        - ./data:/var/www/html/store