initial commit

This commit is contained in:
hiperman
2026-01-30 15:07:31 -05:00
commit 7844cc4416
83 changed files with 3802 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
---
services:
mealie:
image: ghcr.io/mealie-recipes/mealie:{{ mealie_container_version }}
container_name: {{ mealie_container_name }}
restart: {{ mealie_restart_policy }}
ports:
- "{{ mealie_http_port }}:9000"
deploy:
resources:
limits:
memory: 1000M
volumes:
- "{{ mealie_data_path }}:/app/data/"
environment:
# Set Backend ENV Variables Here
PUID: {{ mealie_user }}
PGID: {{ mealie_group }}
TZ: {{ mealie_timezone }}
BASE_URL: {{ mealie_base_url }}
{% for item in mealie_extra_env_vars %}
{{ item.key }}: {{ item.value }}
{% endfor %}