Author SHA1 Message Date
tobbbs f1d90ed3c4 Update README.md 2026-05-27 13:09:33 +02:00
tobbbs 740557aeec Update compose.yaml 2026-05-27 13:09:15 +02:00
tobbbs 64bfae21f0 Add compose.yaml 2026-05-27 09:49:03 +02:00
2 changed files with 32 additions and 23 deletions
+2 -5
View File
@@ -1,7 +1,4 @@
# Bragi-Local # Bragi-Local
My Compose Stacks for all my Docker Services running on my Local Server Services:
- Lubelogger
06_maintanance:
- Lubelogger
- Postgresql for Lubelogger
+30 -18
View File
@@ -1,20 +1,32 @@
services: services:
databasement: lubelogger:
image: davidcrty/databasement:1 image: ghcr.io/hargata/lubelogger:latest
container_name: databasement build: .
user: "1000:1000" restart: unless-stopped
# ports: networks:
# - 2226:2226 - bragi-local
environment: volumes:
- DB_CONNECTION=sqlite - /opt/06_maintanance/data:/App/data
- DB_DATABASE=/data/database.sqlite - /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
- ENABLE_QUEUE_WORKER=true # ports:
volumes: # - 8082:8080
- /opt/98_backups/databasement:/data postgres:
- /mnt/immich/Backups:/backups image: postgres:14
networks: restart: unless-stopped
- bragi-local networks:
- bragi-local
environment:
POSTGRES_USER: lubelogger
POSTGRES_PASSWORD: lubepass
POSTGRES_DB: lubelogger
volumes:
- /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: networks:
bragi-local: bragi-local:
external: true external: true