From c3c05ddc5332313dec105a99f5fbf27c2a6bc5fc Mon Sep 17 00:00:00 2001 From: Vuong Hoang Date: Tue, 21 Apr 2026 00:27:49 -0700 Subject: [PATCH] restic/ana-ml2: exclude parakeet HF cache volume MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit First backup run pulled in 9 GB due to /var/lib/docker/volumes/ parakeet_parakeet_cache — Parakeet is the only AI stack on ana-ml2 using a docker named volume for its HF model cache (kokoro, vibevoice, comfyui, llama-swap, vllm-qwen3 all bind-mount from /tank which is already outside source paths). Excluding brings expected snapshot size back to ~100-300 MB. --- configs/restic/ana-ml2/profiles.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/restic/ana-ml2/profiles.yaml b/configs/restic/ana-ml2/profiles.yaml index f5e7209..d933935 100644 --- a/configs/restic/ana-ml2/profiles.yaml +++ b/configs/restic/ana-ml2/profiles.yaml @@ -44,6 +44,10 @@ default: # Docker internals we never want in a backup - /var/lib/docker/volumes/backingFsBlockDev - /var/lib/docker/volumes/metadata.db + # Parakeet's HF model cache — named volume (stacks that bind-mount + # from /tank/ are already outside the source list; parakeet is the + # odd one out using a docker volume). Regenerable from Hugging Face. + - /var/lib/docker/volumes/parakeet_parakeet_cache # Ephemeral / regenerable junk - /opt/docker/compose/*/logs - "**/*.log"