mirror of
https://github.com/ZettaIO/restic-compose-backup.git
synced 2025-09-28 06:35:24 +00:00
Temp disable local backup run
This commit is contained in:
@@ -34,21 +34,26 @@ def main():
|
||||
if mode == 'volumes':
|
||||
volumes = containers.volume_mounts()
|
||||
for vol in volumes:
|
||||
# print(vol)
|
||||
print(vol)
|
||||
print(vol.mount_string())
|
||||
|
||||
binds = containers.bind_mounts()
|
||||
for vol in binds:
|
||||
print(binds)
|
||||
print(vol.mount_string())
|
||||
|
||||
if mode == 'backup':
|
||||
# TODO: Errors when repo already exists
|
||||
restic.init_repo(Config.repository)
|
||||
|
||||
for vol in containers.backup_volumes():
|
||||
restic.backup_volume(Config.repository, vol)
|
||||
# for vol in containers.backup_volumes():
|
||||
# restic.backup_volume(Config.repository, vol)
|
||||
|
||||
|
||||
|
||||
if mode == 'snapshots':
|
||||
restic.snapshots(Config.repository)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
Reference in New Issue
Block a user