Renovate Bot
76bd7aa6b7
This PR contains the following updates: | Package | Update | Change | |---|---|---| | registry.mgrote.net/miniflux-filter | digest | `092837c` -> `a61f908` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjE1Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Reviewed-on: #694 Co-authored-by: Renovate Bot <renovate@mgrote.net> Co-committed-by: Renovate Bot <renovate@mgrote.net>
81 lines
2.5 KiB
Django/Jinja
81 lines
2.5 KiB
Django/Jinja
version: '3'
|
|
services:
|
|
######## Miniflux ########
|
|
miniflux:
|
|
container_name: "mf-frontend"
|
|
image: "ghcr.io/miniflux/miniflux:2.0.51@sha256:9f3bca6a95428c04c8fb54ee723a5f69b9e419b0bf5dfd7a4d70dfb0414d60f1"
|
|
restart: always
|
|
depends_on:
|
|
- db
|
|
environment:
|
|
DATABASE_URL: "postgres://miniflux:{{ lookup('keepass', 'miniflux_postgres_password', 'password') }}@mf-db/miniflux?sslmode=disable"
|
|
RUN_MIGRATIONS: 1
|
|
# CREATE_ADMIN: 1
|
|
# ADMIN_USERNAME: adminmf
|
|
# ADMIN_PASSWORD: "{{ lookup('keepass', 'miniflux_admin_password', 'password') }}"
|
|
WORKER_POOL_SIZE: 10
|
|
POLLING_FREQUENCY: 10
|
|
CLEANUP_ARCHIVE_UNREAD_DAYS: -1
|
|
CLEANUP_ARCHIVE_READ_DAYS: 90
|
|
TZ: Europe/Berlin
|
|
networks:
|
|
- intern
|
|
- traefik
|
|
labels:
|
|
traefik.http.routers.miniflux.rule: Host(`miniflux.mgrote.net`)
|
|
traefik.enable: true
|
|
traefik.http.routers.miniflux.tls: true
|
|
traefik.http.routers.miniflux.tls.certresolver: resolver_letsencrypt
|
|
traefik.http.routers.miniflux.entrypoints: entry_https
|
|
traefik.http.services.miniflux.loadbalancer.server.port: 8080
|
|
|
|
com.centurylinklabs.watchtower.enable: true
|
|
com.centurylinklabs.watchtower.depends-on: mf-db
|
|
|
|
|
|
######## PostGreSQL ########
|
|
db:
|
|
container_name: "mf-db"
|
|
image: "postgres:16.0@sha256:a80d0c1b119cf3d6bab27f72782f16e47ab8534ced937fa813ec2ab26e1fd81e"
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: miniflux
|
|
POSTGRES_PASSWORD: "{{ lookup('keepass', 'miniflux_postgres_password', 'password') }}"
|
|
TZ: Europe/Berlin
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
networks:
|
|
- intern
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
|
|
######## Miniflux-Filter ########
|
|
mf-filter:
|
|
container_name: mf-filter
|
|
depends_on:
|
|
- miniflux
|
|
restart: always
|
|
environment:
|
|
TZ: Europe/Berlin
|
|
MF_AUTH_TOKEN: "{{ lookup('keepass', 'miniflux_auth_token', 'password') }}"
|
|
MF_API_URL: https://miniflux.mgrote.net/v1
|
|
MF_SLEEP: 600
|
|
#MF_DEBUG: 1
|
|
image: "registry.mgrote.net/miniflux-filter:latest@sha256:a61f908c183f31629169d85db2254246412f778c39ffd8429934d6778d125d15"
|
|
volumes:
|
|
- ./filter.txt:/data/filter.txt
|
|
networks:
|
|
- intern
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: true
|
|
com.centurylinklabs.watchtower.depends-on: mf-frontend
|
|
|
|
######## Volumes ########
|
|
volumes:
|
|
db:
|
|
######## Networks ########
|
|
networks:
|
|
traefik:
|
|
external: true
|
|
intern:
|
|
driver: bridge
|