No computer in the middle
The iPhone connects directly to the server over Wi-Fi. No desktop app, no always-on computer, no cloud, no telemetry — nothing leaves your network.
Open source iPhone backup server
AirVault turns your NAS into a backup server for every iPhone in the house — full backups over Wi-Fi, kept as snapshots you can restore to any paired phone.
Self-hosted. Open source. Nothing leaves your network.

// what it does
The iPhone connects directly to the server over Wi-Fi. No desktop app, no always-on computer, no cloud, no telemetry — nothing leaves your network.
Settings, messages, app data, photos — the same complete backup Finder makes, restorable to a phone.
After the first backup, runs are quick — and each one is kept as its own restorable snapshot.
With iOS backup encryption on, passwords, Health data and call history are in the backup — unreadable without your password.
Every file is checksummed as it's stored and checked again before it goes back onto a phone.
Open the camera roll of a connected iPhone in the browser — thumbnails, previews, and downloads in original quality.
See every installed app, browse its documents and pull files out — or install an .ipa and uninstall right from the dashboard.
Storage, battery health and cycle count, temperature, serial numbers — for every paired iPhone, without digging through Settings.
// how it works
Connect the iPhone once and tap Trust. The server remembers the phone from then on.
Run backups over Wi-Fi from the dashboard. After the first one, only changes transfer.
Pick any snapshot and put it back — on the same iPhone or its replacement.
// install
Any Docker host works: paste the compose file, install the Community Applications template on Unraid, or set up a Container Manager project on Synology. Pair the iPhone once — after that everything is Wi-Fi.
Save the file as docker-compose.yml and run docker compose up -d.
Plug the iPhone into the host once — USB is only needed to pair.
Open http://<host>:8080, paste the token from the log and pair the phone.
amd64 Docker host · USB for the one-time pairing
services:
airvault:
image: ghcr.io/wizier/airvault:latest
container_name: airvault
restart: unless-stopped
# Host networking is required: Wi-Fi discovery is link-local mDNS multicast
network_mode: host
environment:
- AIRVAULT_PORT=${AIRVAULT_PORT:-8080}
- AIRVAULT_AUTH_TOKEN=${AIRVAULT_AUTH_TOKEN:-}
- AIRVAULT_LOG_LEVEL=${AIRVAULT_LOG_LEVEL:-info}
- AIRVAULT_MUX_LOG_LEVEL=${AIRVAULT_MUX_LOG_LEVEL:-warn}
- TZ=${TZ:-Etc/UTC}
# Advanced (optional): AIRVAULT_LISTEN_ADDR, AIRVAULT_DATABASE_URL,
# PUID/PGID/UMASK
# USB pairing: bind the bus
device_cgroup_rules:
- "c 189:* rmw"
volumes:
# /config: settings, database, pairing records. /backups: the backups.
- ./config:/config
- ./backups:/backups
- /dev/bus/usb:/dev/bus/usb
- /run/udev:/run/udev:ro// faq
Everything a Finder backup includes: settings, messages, app data and photos. With encryption on, it also carries what iOS otherwise holds back: saved passwords, Health data and call history. Apps themselves re-download from the App Store on restore.
No. The iPhone backs up to the server directly over Wi-Fi, and you manage everything from a browser.
AirVault uses the same backup protocol Finder and iTunes use, so any iPhone that can back up to a computer can back up here. Wireless backups use the Wi-Fi sync you enable once during pairing.
The first backup is roughly the used space on the phone. Snapshots share unchanged files, so the history grows only by what changed.
Roughly the used space on the phone has to cross your network once, so give it time. Backups run over USB too — you can leave the cable in for the first one. After that, runs transfer only changes and finish quickly.
Yes — standard iOS backup encryption, managed from the dashboard. Without your password the backup is unreadable.
Yes. Any snapshot can be restored to any paired iPhone, including a factory-new phone during its setup.
Every iPhone in the house — each device keeps its own snapshot history.