This repository has been archived on 2025-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
homelab/Docker/mealie/compose.yaml
2025-02-23 18:26:46 +01:00

22 lines
531 B
YAML

services:
mealie:
image: ghcr.io/mealie-recipes/mealie:latest #
container_name: mealie
env_file:
- .env
restart: unless-stopped
ports:
- "9925:9000" #
deploy:
resources:
limits:
memory: 1000M #
volumes:
- ${DATA_FOLDER}:/app/data/
environment:
# Set Backend ENV Variables Here
ALLOW_SIGNUP: "false"
PUID: 1000
PGID: 1000
TZ: Europe/Warsaw
BASE_URL: ${YOUR_DOMAIN:-https://mealie.yourdomain.com}