From 870d6f2ab2da0062db3c0dcd2a5c6c02ce567f2a Mon Sep 17 00:00:00 2001 From: Dziad Borowy <392513+tborychowski@users.noreply.github.com> Date: Thu, 20 Mar 2025 23:39:15 +0000 Subject: [PATCH] Update mealie.md --- apps/cookbook/mealie.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/apps/cookbook/mealie.md b/apps/cookbook/mealie.md index 4efe248..087108d 100644 --- a/apps/cookbook/mealie.md +++ b/apps/cookbook/mealie.md @@ -17,14 +17,23 @@ ## docker-compose.yml ```yml -version: '3.3' services: - dashmachine: - image: rmountjoy/dashmachine:latest - container_name: dashmachine + mealie: + image: ghcr.io/mealie-recipes/mealie + container_name: mealie restart: unless-stopped + deploy: + resources: + limits: + memory: 1000M # + environment: + ALLOW_SIGNUP: "false" + PUID: 1000 + PGID: 1000 + TZ: Europe/Dublin + BASE_URL: https://mealie.yourdomain.com ports: - - 4010:5000 + - "9925:9000" # volumes: - - ./data:/dashmachine/dashmachine/user_data + - ./data:/app/data/ ```