7 Commits
Author SHA1 Message Date
tobbbs af1739b30d Update compose.yaml 2026-07-14 17:28:26 +02:00
tobbbs 7daccdf71a Update compose.yaml 2026-07-14 16:29:27 +02:00
tobbbs cc75409d4b Update compose.yaml 2026-07-14 16:28:16 +02:00
tobbbs 9092880b3e Update compose.yaml 2026-06-02 17:05:10 +02:00
tobbbs 08c912b933 Update compose.yaml 2026-06-02 17:04:24 +02:00
tobbbs e126ce37af Add compose.yaml 2026-06-02 17:02:46 +02:00
tobbbs da83d83d9f Update README.md 2026-05-27 13:10:17 +02:00
2 changed files with 49 additions and 34 deletions
+5 -3
View File
@@ -1,5 +1,7 @@
# Bragi-Local
Services:
- Vikunja
- Postgres for Vikunja
My Compose Stacks for all my Docker Services running on my Local Server
06_maintanance:
- Lubelogger
- Postgresql for Lubelogger
+44 -31
View File
@@ -1,39 +1,52 @@
services:
vikunja:
image: vikunja/vikunja
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
mealie:
image: ghcr.io/mealie-recipes/mealie:v2.8.0
container_name: mealie
restart: always
# ports:
# - 3456:3456
volumes:
- /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:
- /opt/docker/todo/db:/var/lib/postgresql
# - 9925:9000
deploy:
resources:
limits:
memory: 1000M #
networks:
- bragi-local
restart: unless-stopped
volumes:
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/
environment:
ALLOW_SIGNUP: "false"
TZ: Europe/Berlin
DB_ENGINE: postgres
POSTGRES_USER: mealie
POSTGRES_PASSWORD: mealie
POSTGRES_SERVER: postgres
POSTGRES_PORT: 5432
POSTGRES_DB: mealie
depends_on:
postgres:
condition: service_healthy
postgres:
networks:
- bragi-local
container_name: 04_groceries_postgres
image: postgres:15
restart: always
volumes:
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: mealie
POSTGRES_USER: mealie
PGUSER: mealie
healthcheck:
test: ["CMD-SHELL", "pg_isready -h localhost -U $$POSTGRES_USER"]
interval: 2s
start_period: 30s
test:
- CMD
- pg_isready
interval: 30s
timeout: 20s
retries: 3
volumes:
mealie-data: null
mealie-pgdata: null
networks:
bragi-local: