mealie
| 2025-09-07 / 2026-07-30 | ||
Aufgrund der fehlenden App nicht 3, 2, 1... meins...
Aber manchmal gibt es doch ne 2te Chance 🤦♂️
Irgendwie noch keine bessere Alternative gefunden.
Install
sudo mkdir -p /opt/mealie
cd /opt/mealie
sudo nano docker-compose.yaml
services:
mealie:
image: ghcr.io/mealie-recipes/mealie:latest
container_name: mealie
restart: always
ports:
- "9443:9000" #
deploy:
resources:
limits:
memory: 1000M #
volumes:
- mealie-data:/app/data/
environment:
# Set Backend ENV Variables Here
ALLOW_SIGNUP: "false"
TOKEN_TIME: 720 # defines how long the authentication token is valid (in hours)
PUID: 1000
PGID: 1000
TZ: Europe/Berlin
BASE_URL: https://mealie.heister.be
# Mail
SMTP_HOST: mail.heister.email
SMTP_PORT: 465
SMTP_FROM_NAME: Mealie
SMTP_AUTH_STRATEGY: 'SSL'
SMTP_FROM_EMAIL: noreply@heister.email
SMTP_USER: noreply@heister.email
SMTP_PASSWORD: ♯crypt♯
volumes:
mealie-data:
docker compose -f /opt/mealie/docker-compose.yaml up -d
docker compose -f /opt/mealie/docker-compose.yaml down
ReverseProxy
mealie.heister.be
ProxyPreserveHost On
ProxyAddHeaders On
RequestHeader set X-Forwarded-Port "443"
RequestHeader set X-Forwarded-Proto "https"
ProxyPass / http://127.0.0.1:9443/
ProxyPassReverse / http://127.0.0.1:9443/
Sicherung
Update
Ich nutze mein check-docker-updates.sh, muss ich noch veröffentlichen!
# Pull-Richtlinie auf always...
pull_policy: always
#... und ein cronjob für täglichen Restart...
0 6 * * * cd /opt/mealie && docker compose down && docker compose up -d
Home Assistant integration
...
