Remove docker from backups

This commit is contained in:
2025-12-05 11:04:06 +01:00
parent 37cfe0badb
commit cf19960d09

View File

@@ -76,7 +76,7 @@ def backup_containers(nodes):
CUR_PROJECT, CUR_PROJECT,
] ]
) )
cont_names = [x["name"] for x in containers] cont_names = [x["name"] for x in containers if "docker" not in x["name"]]
for name in cont_names: for name in cont_names:
print(f"Snapshot {name}") print(f"Snapshot {name}")
std = subprocess.run( std = subprocess.run(