diff --git a/docker_backups.py b/docker_backups.py index 56ac415..f05b184 100755 --- a/docker_backups.py +++ b/docker_backups.py @@ -6,8 +6,15 @@ import shutil now = datetime.datetime.now() import argparse parser = argparse.ArgumentParser(description="Portainer helper - use env vars or pass credentials.") +parser.add_argument("--gitlab", "-g", action="store_true", help="Select influx") +parser.add_argument("--nextcloud", "-n", action="store_true", help="Select influx") +parser.add_argument("--zabbix", "-z", action="store_true", help="Select influx") +parser.add_argument("--bookstack", "-s", action="store_true", help="Select influx") parser.add_argument("--influx", "-i", action="store_true", help="Select influx") +parser.add_argument("--kestra", "-k", action="store_true", help="Select influx") +parser.add_argument("--authentik", "-a", action="store_true", help="Select influx") parser.add_argument("--backup", "-b", action="store_true", help="Select backup mode") +parser.add_argument("--all", "-A", action="store_true", help="Select backup mode") args = parser.parse_args()