Author SHA1 Message Date
tobbbs 412d412ab8 Update compose.yaml 2026-07-01 17:05:36 +02:00
tobbbs 17b6f74694 Update compose.yaml 2026-07-01 16:47:18 +02:00
tobbbs 888bcf2a5d Update compose.yaml 2026-07-01 16:39:27 +02:00
tobbbs f915ca3319 Update compose.yaml 2026-07-01 16:36:01 +02:00
tobbbs 136e6de2e2 Update compose.yaml 2026-06-19 11:22:03 +02:00
tobbbs d9d52479e6 Update compose.yaml 2026-06-19 11:16:19 +02:00
tobbbs c60a382c98 Update compose.yaml 2026-06-14 23:17:26 +02:00
tobbbs 8559192606 Update compose.yaml 2026-06-10 12:14:17 +02:00
tobbbs a415366e63 Update compose.yaml 2026-06-10 12:13:36 +02:00
tobbbs edef53f2eb Update compose.yaml 2026-06-10 12:09:25 +02:00
tobbbs 0684f122f6 Add compose.yaml 2026-06-10 12:07:12 +02:00
tobbbs da83d83d9f Update README.md 2026-05-27 13:10:17 +02:00
2 changed files with 53 additions and 30 deletions
+4 -1
View File
@@ -1,4 +1,7 @@
# Bragi-Local # Bragi-Local
Services: My Compose Stacks for all my Docker Services running on my Local Server
06_maintanance:
- Lubelogger - Lubelogger
- Postgresql for Lubelogger
+45 -25
View File
@@ -1,32 +1,52 @@
services: services:
lubelogger: freshrss:
image: ghcr.io/hargata/lubelogger:latest image: freshrss/freshrss:latest
build: . container_name: freshrss
restart: unless-stopped
networks:
- bragi-local
volumes:
- /opt/06_maintanance/data:/App/data
- /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
# ports:
# - 8082:8080
postgres:
image: postgres:14
restart: unless-stopped
networks:
- bragi-local
environment: environment:
POSTGRES_USER: lubelogger TZ: Europe/Berlin
POSTGRES_PASSWORD: lubepass CRON_MIN: '*/15'
POSTGRES_DB: lubelogger # ports:
# - 80:80
volumes: volumes:
- /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql - /opt/08_reading/freshrss/data:/var/www/FreshRSS/data
- /opt/06_maintanance/postgres:/var/lib/postgresql/data - /opt/08_reading/freshrss/extensions:/var/www/FreshRSS/extensions
- /etc/localtime:/etc/localtime:ro restart: unless-stopped
networks:
- bragi-local
kavita:
image: lscr.io/linuxserver/kavita:latest
container_name: kavita
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes: volumes:
data: null - /opt/08_reading/kavita/config:/config
keys: null - /mnt/immich/Books:/books
postgres: null # - /path/to/data:/data #optional
# ports:
# - 5000:5000
restart: unless-stopped
networks:
- bragi-local
leafwiki:
image: ghcr.io/perber/leafwiki:latest
container_name: leafwiki
user: 1000:1000
# ports:
# - "8080:8080"
environment:
- LEAFWIKI_JWT_SECRET=${JWT}
- LEAFWIKI_ADMIN_PASSWORD=${ADMIN}
- LEAFWIKI_ALLOW_INSECURE=true
volumes:
- /opt/08_reading/leafwiki:/app/data
restart: unless-stopped
networks:
- bragi-local
networks: networks:
bragi-local: bragi-local:
external: true external: true