Back Up Your Self-Hosted QuFabric Installation
To back up your QuFabric installation, you need to copy the configuration files and the Management service databases.
The configuration files are located in the folder where you ran the installation script. To back up, copy the files to a backup location:
mkdir backup
cp docker-compose.yml dashboard.env config.yaml backup/
For detailed information about each configuration file and its options, see the Configuration Files Reference.
To save the server databases, stop the server and copy the files from the data directory:
docker compose stop qufabric-server
docker compose cp -a qufabric-server:/var/lib/qufabric/ backup/
docker compose start qufabric-server
Older Setup (Separate Containers)
If your deployment uses the older setup with separate containers (management, signal, relay, coturn), back up the configuration files:
mkdir backup
cp docker-compose.yml Caddyfile dashboard.env management.json relay.env backup/
To save the Management service database:
docker compose stop management
docker compose cp -a management:/var/lib/qufabric/ backup/
docker compose start management
Get In Touch
Feel free to ping us on Slack if you have any questions.
- QuFabric managed version: https://app.qufabric.io
- Make sure to star us on GitHub
- Follow us on X

