This page documents applications that were previously running in Enclari, now removed but with backups retained.
- URL (archived): https://cloud.enclari.com
- Role: File sync and sharing
- Stack: Nextcloud + MariaDB
- Volumes:
nextcloud_nc-app-data
nextcloud_nc-db-data
- Status: Removed, full backup retained in Restic
- Restore snapshot:
/root/backup.sh restore nextcloud
→ /opt/restore/nextcloud-<timestamp> will contain opt/stack/nextcloud and volume data.
- Rehydrate volumes:
cd /opt/stack/nextcloud && docker compose down
for V in $(docker volume ls -q | grep '^nextcloud_'); do
rsync -aHAX --delete /opt/restore/nextcloud-*/var/lib/docker/volumes/$V/_data/ /var/lib/docker/volumes/$V/_data/
done
rsync -aHAX --delete /opt/restore/nextcloud-*/opt/stack/nextcloud/ /opt/stack/nextcloud/
cd /opt/stack/nextcloud && docker compose up -d
- Nextcloud requires both DB and app data volume to be consistent.
- Collabora integration can be restored after Nextcloud is back online.
- URL (archived): https://office.enclari.com
- Role: Online office suite integrated with Nextcloud
- Stack: Single container (stateless)
- Volumes: none (stateless)
- Status: Removed, can be redeployed from compose
- Restore snapshot (compose + env only):
/root/backup.sh restore collabora
- Re-deploy:
cd /opt/stack/collabora
docker compose up -d
- No persistent data is stored.
- Integration with Nextcloud requires Collabora WOPI config.
flowchart LR
subgraph Proxy
T[Traefik]
end
subgraph App
NC[Nextcloud]
CO[Collabora CODE]
end
subgraph Databases
NCDB[MariaDB <for Nextcloud>]
end
T --> NC
T --> CO
NC --> NCDB
NC -. "Integrated" .-> CO