Author SHA1 Message Date
tobbbs d7af843302 Update compose.yaml 2026-05-27 13:28:28 +02:00
tobbbs 0e8df32227 Update README.md 2026-05-27 13:25:39 +02:00
tobbbs 271d835a26 Update compose.yaml 2026-05-26 16:36:43 +02:00
tobbbs 21278346fc Add compose.yaml 2026-05-26 16:35:29 +02:00
2 changed files with 34 additions and 25 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
# Bragi-Local
Services:
- Lubelogger
- Vikunja
- Postgres for Vikunja
+31 -23
View File
@@ -1,32 +1,40 @@
services:
lubelogger:
image: ghcr.io/hargata/lubelogger:latest
build: .
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
vikunja:
image: vikunja/vikunja
networks:
- bragi-local
environment:
POSTGRES_USER: lubelogger
POSTGRES_PASSWORD: lubepass
POSTGRES_DB: lubelogger
VIKUNJA_SERVICE_PUBLICURL: https://tasks.doeringer.eu
VIKUNJA_DATABASE_HOST: db
VIKUNJA_DATABASE_PASSWORD: Mu4snEKrHvFPxsEAS8fq
VIKUNJA_DATABASE_TYPE: postgres
VIKUNJA_DATABASE_USER: vikunja
VIKUNJA_DATABASE_DATABASE: vikunja
VIKUNJA_SERVICE_SECRET: MLuQnPRdYQSTFApQqsFSapyfGrbFsv
# ports:
# - 3456:3456
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
- /opt/docker/todo/files:/app/vikunja/files
depends_on:
db:
condition: service_healthy
restart: unless-stopped
db:
image: postgres:18
environment:
POSTGRES_PASSWORD: Mu4snEKrHvFPxsEAS8fq
POSTGRES_USER: vikunja
volumes:
data: null
keys: null
postgres: null
- /opt/docker/todo/db:/var/lib/postgresql
networks:
- bragi-local
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -h localhost -U $$POSTGRES_USER"]
interval: 2s
start_period: 30s
networks:
bragi-local:
external: true