2020-11-01 15:51:25 +00:00
# Miniflux-filter
2022-01-20 10:06:58 +00:00
Filter for miniflux - "mark as read" all unwanted articles.
2022-01-20 10:07:27 +00:00
< br >
2022-01-20 10:06:58 +00:00
I created that before miniflux added some basic filtering.
2022-01-20 10:07:27 +00:00
< br >
2022-01-20 10:06:58 +00:00
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.
< br >
2022-01-20 10:07:27 +00:00
< br >
2022-01-20 10:06:58 +00:00
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!
2020-11-01 15:51:25 +00:00
2022-01-20 10:14:14 +00:00
- [Github repo ](https://github.com/tborychowski/miniflux-filter )
- [Docker Hub ](https://hub.docker.com/r/tborychowski/miniflux-filter )
2022-01-20 10:10:10 +00:00
2020-11-01 15:51:25 +00:00
2022-01-20 10:14:14 +00:00
![Screenshot ](miniflux-filter.png )
2020-11-01 15:51:25 +00:00
## docker-compose.yml
```yml
---
version: '3'
services:
2022-01-20 10:06:58 +00:00
miniflux-filter:
image: tborychowski/miniflux-filter:latest
2020-11-01 15:51:25 +00:00
container_name: miniflux-filter
restart: unless-stopped
environment:
2022-01-20 10:06:58 +00:00
- TZ=Europe/Dublin
# if not present - there will be no auth
# - ADMIN_PASSWORD=admin1
# ERROR, WARNING, INFO, DEBUG
- LOG_LEVEL=INFO
2020-11-01 15:51:25 +00:00
ports:
2022-01-20 10:06:58 +00:00
- "5020:80"
2020-11-01 15:51:25 +00:00
volumes:
2022-01-20 10:06:58 +00:00
- ./data:/var/www/html/store
2020-11-01 15:51:25 +00:00
```