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 25 additions and 34 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
# Bragi-Local
Services:
- Vikunja
- Postgres for Vikunja
- Lubelogger
+22 -30
View File
@@ -1,40 +1,32 @@
services:
vikunja:
image: vikunja/vikunja
lubelogger:
image: ghcr.io/hargata/lubelogger:latest
build: .
restart: unless-stopped
networks:
- bragi-local
environment:
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
volumes:
- /opt/06_maintanance/data:/App/data
- /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
# ports:
# - 3456:3456
volumes:
- /opt/docker/todo/files:/app/vikunja/files
depends_on:
db:
condition: service_healthy
# - 8082:8080
postgres:
image: postgres:14
restart: unless-stopped
db:
image: postgres:18
environment:
POSTGRES_PASSWORD: Mu4snEKrHvFPxsEAS8fq
POSTGRES_USER: vikunja
volumes:
- /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
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