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 22 additions and 46 deletions
+1 -4
View File
@@ -1,7 +1,4 @@
# Bragi-Local # Bragi-Local
My Compose Stacks for all my Docker Services running on my Local Server Services:
06_maintanance:
- Lubelogger - Lubelogger
- Postgresql for Lubelogger
+22 -43
View File
@@ -1,53 +1,32 @@
services: services:
mealie: lubelogger:
image: ghcr.io/mealie-recipes/mealie:v2.8.0 image: ghcr.io/hargata/lubelogger:latest
container_name: mealie build: .
restart: always restart: unless-stopped
networks:
- bragi-local
volumes:
- /opt/06_maintanance/data:/App/data
- /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
# ports: # ports:
# - 9925:9000 # - 8082:8080
deploy: postgres:
resources: image: postgres:14
limits: restart: unless-stopped
memory: 1000M #
networks: networks:
- bragi-local - bragi-local
volumes:
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/
environment: environment:
ALLOW_SIGNUP: "false" POSTGRES_USER: lubelogger
TZ: Europe/Berlin POSTGRES_PASSWORD: lubepass
DB_ENGINE: postgres POSTGRES_DB: lubelogger
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: volumes:
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data - /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql
environment: - /opt/06_maintanance/postgres:/var/lib/postgresql/data
POSTGRES_PASSWORD: mealie - /etc/localtime:/etc/localtime:ro
POSTGRES_USER: mealie
PGUSER: mealie
healthcheck:
test:
- CMD
- pg_isready
interval: 30s
timeout: 20s
retries: 3
volumes: volumes:
mealie-data: null data: null
mealie-pgdata: null keys: null
postgres: null
networks: networks:
bragi-local: bragi-local:
external: true external: true