3 Commits
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 27 additions and 30 deletions
+1 -4
View File
@@ -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
+25 -25
View File
@@ -1,32 +1,32 @@
services:
open-webui:
# ports:
# - 3000:8080
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities:
- gpu
volumes:
- /opt/09_ki/ollama:/root/.ollama
- /opt/09_ki/open-webui:/app/backend/data
container_name: open-webui
restart: always
image: ghcr.io/open-webui/open-webui:ollama
lubelogger:
image: ghcr.io/hargata/lubelogger:latest
build: .
restart: unless-stopped
networks:
- bragi-local
volumes:
ollama:
external: true
name: ollama
open-webui:
external: true
name: open-webui
- /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:
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:
bragi-local:
external: true