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
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
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:
condition: service_healthy
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
# - CREATE_ADMIN=1
# - ADMIN_USERNAME=admin
# - ADMIN_PASSWORD=test123
- CREATE_ADMIN=1
- ADMIN_USERNAME=YOUR_USERNAME
- ADMIN_PASSWORD=YOUR_USER_PASSWORD
db:
image: postgres:18
environment:
- POSTGRES_USER=miniflux
- POSTGRES_PASSWORD=YOUR_PASSWORD
- POSTGRES_PASSWORD=YOUR_DATABASE_PASSWORD
- POSTGRES_DB=miniflux
volumes:
- postgres:/var/lib/postgresql