Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1d90ed3c4 | ||
|
|
740557aeec | ||
|
|
64bfae21f0 |
@@ -1,5 +1,4 @@
|
||||
# Bragi-Local
|
||||
|
||||
Services:
|
||||
- Vikunja
|
||||
- Postgres for Vikunja
|
||||
- Lubelogger
|
||||
+22
-30
@@ -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
|
||||
Reference in New Issue
Block a user