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