mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-03 23:37:32 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
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!
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
			
		