Mealie

Material design inspired recipe manager with category and tag management, shopping-lists, meal-planner, and site customizations. Mealie is focused on simple user interactions to keep the whole family using the app.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
services:
  mealie:
    image: ghcr.io/mealie-recipes/mealie:v1.12.0 
    container_name: mealie
    restart: always
    ports:
        - "9925:9000"
    deploy:
      resources:
        limits:
          memory: 1000M 
    volumes:
      - ./mealie-data:/app/data/
    environment:
      # Set Backend ENV Variables Here
      ALLOW_SIGNUP: "false"
      PUID: 1000
      PGID: 1000
      TZ: America/Anchorage
      MAX_WORKERS: 1
      WEB_CONCURRENCY: 1
      BASE_URL: https://mealie.yourdomain.com

Resources

Website: https://mealie.io/

GitHub: https://github.com/hay-kot/mealie

Docker Hub: https://github.com/mealie-recipes/mealie/pkgs/container/mealie

Configuration: https://docs.mealie.io/documentation/getting-started/installation/installation-checklist/