Skip to content
View frostronic's full-sized avatar

Block or report frostronic

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Docker backup script Docker backup script
    1
    #!/bin/bash
    2
    
                  
    3
    # Log file for capturing script output.
    4
    LOG_FILE="/var/log/docker_backup.log"
    5
    exec > >(tee -i $LOG_FILE)
  2. Prune excess backups Prune excess backups
    1
    #!/bin/bash
    2
    
                  
    3
    # specify the directory and threshold. MODIFY THIS TO REFLECT YOUR PATH AND THRESHOLD
    4
    dir=/nfs/backup/docker
    5
    threshold=10