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
+2 -5
View File
@@ -1,7 +1,4 @@
# Bragi-Local # Bragi-Local
My Compose Stacks for all my Docker Services running on my Local Server Services:
- Lubelogger
06_maintanance:
- Lubelogger
- Postgresql for Lubelogger
+20 -41
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
# ports:
# - 9925:9000
deploy:
resources:
limits:
memory: 1000M #
networks: networks:
- bragi-local - bragi-local
volumes: volumes:
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/ - /opt/06_maintanance/data:/App/data
environment: - /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
ALLOW_SIGNUP: "false" # ports:
TZ: Europe/Berlin # - 8082:8080
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: postgres:
image: postgres:14
restart: unless-stopped
networks: networks:
- bragi-local - 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: environment:
POSTGRES_PASSWORD: mealie POSTGRES_USER: lubelogger
POSTGRES_USER: mealie POSTGRES_PASSWORD: lubepass
PGUSER: mealie POSTGRES_DB: lubelogger
healthcheck: volumes:
test: - /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql
- CMD - /opt/06_maintanance/postgres:/var/lib/postgresql/data
- pg_isready - /etc/localtime:/etc/localtime:ro
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