miniflux screwed me up
This commit is contained in:
+3
-2
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user