miniflux screwed me up

This commit is contained in:
2026-01-24 23:02:44 -07:00
parent 498e73be95
commit 351c121b41
2 changed files with 8 additions and 7 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
# Miniflux # Miniflux
Modified from [official instructions](https://miniflux.app/docs/docker.html). Modified from [official instructions](https://miniflux.app/docs/docker.html).
I commented out the stuff to create the initial user because I'm running this ~~I commented out the stuff to create the initial user because I'm running this
behind Cosmos, where I can temporarily quarantine it from the wider internet behind Cosmos, where I can temporarily quarantine it from the wider internet
while configuring it. while configuring it.~~ Apparently, Miniflux made it so this is required, even
though documentation implies it's only optional. :D
+5 -5
View File
@@ -18,16 +18,16 @@ services:
db: db:
condition: service_healthy condition: service_healthy
environment: environment:
- DATABASE_URL=postgres://miniflux:YOUR_PASSWORD@db/miniflux?sslmode=disable - DATABASE_URL=postgres://miniflux:YOUR_DATABASE_PASSWORD@db/miniflux?sslmode=disable
- RUN_MIGRATIONS=1 - RUN_MIGRATIONS=1
# - CREATE_ADMIN=1 - CREATE_ADMIN=1
# - ADMIN_USERNAME=admin - ADMIN_USERNAME=YOUR_USERNAME
# - ADMIN_PASSWORD=test123 - ADMIN_PASSWORD=YOUR_USER_PASSWORD
db: db:
image: postgres:18 image: postgres:18
environment: environment:
- POSTGRES_USER=miniflux - POSTGRES_USER=miniflux
- POSTGRES_PASSWORD=YOUR_PASSWORD - POSTGRES_PASSWORD=YOUR_DATABASE_PASSWORD
- POSTGRES_DB=miniflux - POSTGRES_DB=miniflux
volumes: volumes:
- postgres:/var/lib/postgresql - postgres:/var/lib/postgresql