{% import 'macro/accordion.html' as accordion %} {% macro is_locked(var_name) %}{{ 'disabled' if env_locked_values[var_name] else '' }}{% endmacro %} {% macro config_badges(var_name) %} {% set current_value = env_values[var_name] %} {% set default_value = config_defaults[var_name] %} {% set is_explicitly_set = env_explicit_values[var_name] %} {% set is_locked = env_locked_values[var_name] %} {% if is_locked %} Locked {% endif %} {% if not is_explicitly_set %} Unset Default Value {% elif current_value is sameas true %} True {% elif current_value is sameas false %} False {% elif current_value == default_value %} Default: {{ default_value }} {% else %} Default: {{ default_value }} {% endif %} {% if current_value != default_value and not is_locked %} Changed {% endif %} {% endmacro %}
Configuration file location: {{ env_file_location }}
Settings changes will not persist across container restarts.
To persist configuration changes, either:
See Migration Guide for details.
.env to data/.env folder (recommended), or- ./.env:/app/.env to your compose.yaml
No .env file was found at data/.env. Currently using default values and Docker environment variables.
If you save changes, a new configuration file will be created at data/.env (recommended location).
See Migration Guide for details.