updated app templates
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# =============================================================================
|
||||
# .felhom.yml — App metadata for felhom-controller
|
||||
# =============================================================================
|
||||
# Place alongside docker-compose.yml in each stack directory:
|
||||
# /opt/docker/stacks/mealie/.felhom.yml
|
||||
# =============================================================================
|
||||
|
||||
# --- Display info (shown on dashboard) ---
|
||||
display_name: "Mealie"
|
||||
description: "Receptkezelő és étkezéstervező"
|
||||
category: "productivity"
|
||||
subdomain: "recipes"
|
||||
|
||||
# --- Asset slug ---
|
||||
slug: "mealie"
|
||||
|
||||
# --- Resource hints (displayed on deploy screen) ---
|
||||
resources:
|
||||
mem_request: "200M"
|
||||
mem_limit: "1000M"
|
||||
pi_compatible: true
|
||||
needs_hdd: false
|
||||
|
||||
# --- Deploy fields ---
|
||||
deploy_fields:
|
||||
- env_var: DOMAIN
|
||||
label: "Domain"
|
||||
type: domain
|
||||
description: "A szerver domain neve"
|
||||
locked_after_deploy: true
|
||||
@@ -1,11 +1,10 @@
|
||||
# Mealie - Recipe Manager & Meal Planner
|
||||
# Domain: recipes.{{DOMAIN}}
|
||||
# Domain: recipes.${DOMAIN}
|
||||
# Database: None (SQLite, built-in)
|
||||
# RAM: ~200MB | Pi-compatible: Yes (arm64 only)
|
||||
# RAM: ~200MB (mem_limit: 1000M) | Pi-compatible: Yes (arm64 only)
|
||||
#
|
||||
# Environment variables (set in Portainer):
|
||||
# (none required for basic usage)
|
||||
# SMTP_HOST, SMTP_PORT, SMTP_USER, SMTP_PASSWORD - for email features (optional)
|
||||
# Environment variables:
|
||||
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
||||
#
|
||||
# Storage layout:
|
||||
# Recipe data/images → mealie_data (named volume, NVMe — moderate size)
|
||||
@@ -26,7 +25,7 @@ services:
|
||||
- TZ=Europe/Budapest
|
||||
- MAX_WORKERS=1
|
||||
- WEB_CONCURRENCY=1
|
||||
- BASE_URL=https://recipes.{{DOMAIN}}
|
||||
- BASE_URL=https://recipes.${DOMAIN}
|
||||
volumes:
|
||||
- mealie_data:/app/data/
|
||||
networks:
|
||||
@@ -43,7 +42,7 @@ services:
|
||||
start_period: 30s
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.mealie.rule=Host(`recipes.{{DOMAIN}}`)"
|
||||
- "traefik.http.routers.mealie.rule=Host(`recipes.${DOMAIN}`)"
|
||||
- "traefik.http.routers.mealie.entrypoints=websecure"
|
||||
- "traefik.http.routers.mealie.tls=true"
|
||||
- "traefik.http.routers.mealie.tls.certresolver=letsencrypt"
|
||||
@@ -54,4 +53,4 @@ volumes:
|
||||
|
||||
networks:
|
||||
traefik-public:
|
||||
external: true
|
||||
external: true
|
||||
|
||||
Reference in New Issue
Block a user