Hello, I have this restic REST server docker-compose.yml
:
---
services:
restic_rest_server:
image: restic/rest-server:latest
container_name: restic_rest_server
volumes:
- ./data:/data
env_file:
- .env
ports:
- "127.0.0.1:${PORT}:8000"
Works well, restic
clients do backup there.
But I suddenly lost a key for one of my client. I want to remove this specific backup from rest-server, but how do I determine what to remove? In ls data/keys
, there are list of keys that are not presented in restic
config (in fact, I use autorestic
but that does not change much).
How do I remove this specific client data?
P. S. I cannot change the url it backups to. It is set to <restic_rest_server_url>/<hostname>
for each client and that’s it.