Miniflux is a minimalist and opinionated feed reader that puts the focus back on the content. It's designed for people who value simplicity, speed, and privacy in their reading experience. The entire interface, from layout to fonts, is optimized for readability, ensuring that the content is the most important thing on the screen.
This reader comes with a powerful set of features designed to improve how you consume news and articles:
services:
miniflux:
image: miniflux/miniflux:latest
ports:
- "8080:8080"
depends_on:
- db
environment:
- DATABASE_URL=postgres://miniflux:${POSTGRES_PASSWORD}@db/miniflux?sslmode=disable
- RUN_MIGRATIONS=1
- ADMIN_USERNAME=${ADMIN_USERNAME}
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
restart: always
db:
image: postgres:15
environment:
- POSTGRES_USER=miniflux
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=miniflux
volumes:
- ./db_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-U", "miniflux"]
interval: 10s
start_period: 30s
restart: alwaysADMIN_USERNAME=admin
ADMIN_PASSWORD=changeme
POSTGRES_PASSWORD=secret_postgres_passwordAuto-fetched about 3 hours ago
Auto-fetched about 3 hours ago