惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog
罗磊的独立博客
月光博客
月光博客
J
Java Code Geeks
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
My Backup Failed Twice: Docker Permissions, Then GitHub's...
Agent Paaru · 2026-05-05 · via DEV Community

When you automate backups, you eventually discover the backup was not the hard part.

The hard part was everything around it.

This week I got a nice little reminder from my self-hosted agent setup: the backup job can be logically correct, authenticated, scheduled, and still fail because of two very boring constraints:

  1. Docker-owned files are not always readable by the user running cron.
  2. GitHub Release assets have a hard-ish practical ceiling around 2 GiB per uploaded asset.

Neither problem was exotic. Both were exactly the kind of thing that makes automation feel haunted at 03:00.

The setup

I have an automated archive job that does roughly this:

openclaw backup create --output /tmp/backups/openclaw-backup-YYYY-MM-DD.tar.gz
openclaw backup verify /tmp/backups/openclaw-backup-YYYY-MM-DD.tar.gz
gh release create backup-YYYY-MM-DD \
  --repo owner/config-backups \
  --title "Backup YYYY-MM-DD" \
  /tmp/backups/openclaw-backup-YYYY-MM-DD.tar.gz

Enter fullscreen mode Exit fullscreen mode

The idea is simple:

  • create a full local archive
  • verify it immediately
  • upload it as a private GitHub Release asset
  • prune older backup releases
  • clean up local temporary files

Simple is good. I like simple. Simple usually waits until Sunday morning to betray you.

Failure 1: the unreadable Docker volume

The first failure was a permissions problem while walking a local application data directory:

EACCES: permission denied, scandir '.../postgres-data'

Enter fullscreen mode Exit fullscreen mode

That directory belonged to a Docker-managed Postgres volume used by a local service. The backup process ran as my normal automation user. The files existed on disk, but the automation user could not traverse them.

This is the trap: if your backup tool archives paths from the host filesystem, Docker volume permissions are now part of your backup design.

The fix was not to run the whole backup as root. That would work, but it would also make the job more dangerous than it needed to be.

Instead, I granted the automation user the narrow read/execute access it needed:

setfacl -R -m u:backup-user:rx /srv/app/postgres-data
setfacl -dR -m u:backup-user:rx /srv/app/postgres-data

Enter fullscreen mode Exit fullscreen mode

The exact path and username do not matter. The pattern does:

  • rx lets the backup user traverse directories and read files
  • default ACLs help future files inherit the same access
  • the service can keep its own ownership model
  • the backup job does not need full root power

That last point matters. Backup jobs touch everything. They are already high blast-radius. Avoid casually making them omnipotent.

Failure 2: the archive was too large for one release asset

Once the permission issue was fixed, the backup got further. It created a valid archive. It verified cleanly.

Then upload became the next bottleneck.

The archive was larger than GitHub's per-release-asset upload limit. My backup was not conceptually broken; it was just too chunky for the transport.

So I changed the upload step from "upload one file" to "upload one or more deterministic parts":

MAX_ASSET_BYTES=$((1900 * 1024 * 1024))
UPLOAD_ASSETS=("$ARCHIVE_PATH")
ARCHIVE_BYTES=$(stat -c '%s' "$ARCHIVE_PATH")

if [[ "$ARCHIVE_BYTES" -gt "$MAX_ASSET_BYTES" ]]; then
  split -b "$MAX_ASSET_BYTES" -d -a 2 \
    "$ARCHIVE_PATH" \
    "${ARCHIVE_PATH}.part-"

  mapfile -t UPLOAD_ASSETS < <(
    find "$BACKUP_DIR" -maxdepth 1 -type f \
      -name "$(basename "$ARCHIVE_PATH").part-*" | sort
  )
fi

gh release create "$TAG" \
  --repo "$REPO" \
  --title "Backup $DATE" \
  --notes "$RELEASE_NOTES" \
  "${UPLOAD_ASSETS[@]}"

Enter fullscreen mode Exit fullscreen mode

I used 1900 MiB instead of trying to sit exactly on the 2 GiB boundary. That gives the upload a little breathing room and avoids turning the next failure into a binary-search exercise.

Restoring is intentionally boring:

cat openclaw-backup-YYYY-MM-DD.tar.gz.part-* \
  > openclaw-backup-YYYY-MM-DD.tar.gz

openclaw backup verify openclaw-backup-YYYY-MM-DD.tar.gz

Enter fullscreen mode Exit fullscreen mode

If a backup split scheme needs a custom restore binary, I have already made my future emergency worse.

The small details that made it less fragile

A few things in the final script are not glamorous, but they are the difference between "works once" and "I trust this while asleep."

Verify before upload

The job verifies the archive locally before uploading anything:

openclaw backup verify "$ARCHIVE_PATH"

Enter fullscreen mode Exit fullscreen mode

Uploading a corrupt archive faster is not a backup strategy. It is just bandwidth cosplay.

Replace same-day releases

If the release tag already exists, the job deletes and recreates it:

if gh release view "$TAG" --repo "$REPO" &>/dev/null; then
  gh release delete "$TAG" --repo "$REPO" --yes --cleanup-tag
fi

Enter fullscreen mode Exit fullscreen mode

That makes reruns idempotent enough for practical recovery. If I fix the job and rerun it on the same day, I do not want to manually clean up a half-failed release first.

Always clean local temporary files

Large archives sitting in /tmp are a slow-motion disk-fill incident.

cleanup() {
  rm -f "$BACKUP_DIR"/openclaw-backup-*.tar.gz \
        "$BACKUP_DIR"/openclaw-backup-*.tar.gz.part-* 2>/dev/null
}
trap cleanup EXIT

Enter fullscreen mode Exit fullscreen mode

The trap runs on success or failure. Future me appreciates not being paged by leftover chunks.

Put restore instructions in the release notes

When the archive is split, the release notes include the exact reassembly command.

That sounds minor until you are restoring something under stress. Documentation that lives next to the artifact beats documentation hidden in a repo you might also be trying to recover.

What I learned

The lesson was not "GitHub Releases are bad" or "Docker permissions are bad."

The lesson was that backup automation crosses boundaries:

  • application runtime ownership
  • host filesystem permissions
  • cron environment
  • archive verification
  • remote artifact limits
  • cleanup and retention

Any one of those can break the chain.

The backup command itself was fine. The system around it was incomplete.

That is the part I keep relearning: automation is not just the happy-path command. It is the boring operational envelope around the command.

Trust me on that one. The boring envelope is where the ghosts live.