From 96b7758f1f527d3669c5b45ad4bd6a89277d38ac Mon Sep 17 00:00:00 2001 From: Matt Campbell Date: Thu, 22 Feb 2024 20:06:10 -0700 Subject: [PATCH] tweaks usage in README to add cache volume Things will usually work just fine without this, but strictly speaking one wants to persist the ddclient cache via volume in addition to the configuration. Without persisting this cache, every time the container restarts (before the IP address has changed), it will log this warning: ``` nochg: No update required; unnecessary attempts to change to the current address are considered abusive ``` When the cache is persisted as suggested, this warning does not occur. --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index bda6a4d..a3b195e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -23,6 +23,7 @@ param_env_vars: param_usage_include_vols: true param_volumes: - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" } + - { vol_path: "/var/cache/ddclient", vol_host_path: "/path/to/{{ project_name }}/cache", desc: "ddclient cache files" } param_usage_include_ports: false param_device_map: false cap_add_param: false