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
+50 -17
View File
@@ -1,20 +1,53 @@
services: services:
databasement: mealie:
image: davidcrty/databasement:1 image: ghcr.io/mealie-recipes/mealie:v2.8.0
container_name: databasement container_name: mealie
user: "1000:1000" restart: always
# ports: # ports:
# - 2226:2226 # - 9925:9000
environment: deploy:
- DB_CONNECTION=sqlite resources:
- DB_DATABASE=/data/database.sqlite limits:
- ENABLE_QUEUE_WORKER=true memory: 1000M #
volumes: networks:
- /opt/98_backups/databasement:/data - bragi-local
- /mnt/immich/Backups:/backups volumes:
networks: - /home/shrek/docker/stack/mealie/mealie-data:/app/data/
- bragi-local 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
- pg_isready
interval: 30s
timeout: 20s
retries: 3
volumes:
mealie-data: null
mealie-pgdata: null
networks: networks:
bragi-local: bragi-local:
external: true external: true