Update mealie.md

This commit is contained in:
Dziad Borowy 2025-03-20 23:39:15 +00:00 committed by GitHub
parent 78f6a4a107
commit 870d6f2ab2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,14 +17,23 @@
## docker-compose.yml ## docker-compose.yml
```yml ```yml
version: '3.3'
services: services:
dashmachine: mealie:
image: rmountjoy/dashmachine:latest image: ghcr.io/mealie-recipes/mealie
container_name: dashmachine container_name: mealie
restart: unless-stopped 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: ports:
- 4010:5000 - "9925:9000" #
volumes: volumes:
- ./data:/dashmachine/dashmachine/user_data - ./data:/app/data/
``` ```