22 lines
515 B
YAML
22 lines
515 B
YAML
---
|
|
app_name: mealie
|
|
|
|
# Container configuration
|
|
mealie_container_name: "{{ app_name | default('mealie') }}"
|
|
mealie_container_version: latest
|
|
mealie_restart_policy: "{{ app_restart_policy }}"
|
|
mealie_user: "{{ app_uid }}"
|
|
mealie_group: "{{ app_gid }}"
|
|
|
|
# Network configuration
|
|
mealie_http_port: 9925
|
|
|
|
# Volume paths
|
|
mealie_data_path: "{{ app_dir }}/data"
|
|
|
|
# App-specific configuration
|
|
mealie_timezone: "{{ app_timezone_cc }}"
|
|
mealie_base_url: http://localhost:8080
|
|
mealie_extra_env_vars: {}
|
|
# ALLOW_SIGNUP: "false"
|