Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1d90ed3c4 | ||
|
|
740557aeec | ||
|
|
64bfae21f0 |
@@ -1,7 +1,4 @@
|
||||
# Bragi-Local
|
||||
|
||||
My Compose Stacks for all my Docker Services running on my Local Server
|
||||
|
||||
06_maintanance:
|
||||
Services:
|
||||
- Lubelogger
|
||||
- Postgresql for Lubelogger
|
||||
+19
-39
@@ -1,52 +1,32 @@
|
||||
services:
|
||||
freshrss:
|
||||
image: freshrss/freshrss:latest
|
||||
container_name: freshrss
|
||||
environment:
|
||||
TZ: Europe/Berlin
|
||||
CRON_MIN: '*/15'
|
||||
# ports:
|
||||
# - 80:80
|
||||
volumes:
|
||||
- /opt/08_reading/freshrss/data:/var/www/FreshRSS/data
|
||||
- /opt/08_reading/freshrss/extensions:/var/www/FreshRSS/extensions
|
||||
lubelogger:
|
||||
image: ghcr.io/hargata/lubelogger:latest
|
||||
build: .
|
||||
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:
|
||||
- /opt/08_reading/kavita/config:/config
|
||||
- /mnt/immich/Books:/books
|
||||
# - /path/to/data:/data #optional
|
||||
# ports:
|
||||
# - 5000:5000
|
||||
- /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
|
||||
|
||||
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
|
||||
POSTGRES_USER: lubelogger
|
||||
POSTGRES_PASSWORD: lubepass
|
||||
POSTGRES_DB: lubelogger
|
||||
volumes:
|
||||
- /opt/08_reading/leafwiki:/app/data
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- bragi-local
|
||||
|
||||
- /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql
|
||||
- /opt/06_maintanance/postgres:/var/lib/postgresql/data
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
volumes:
|
||||
data: null
|
||||
keys: null
|
||||
postgres: null
|
||||
networks:
|
||||
bragi-local:
|
||||
external: true
|
||||
Reference in New Issue
Block a user