Skip to content

Commit

Permalink
tweaks usage in README to add cache volume
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MattVonVielen committed Feb 23, 2024
1 parent 424d48a commit 96b7758
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96b7758

Please sign in to comment.