This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python3 | |
| import os | |
| import sys | |
| import hashlib | |
| import datetime | |
| import fnmatch | |
| def generate(checksum_file_path, excludes=[]): | |
| md5_dict = load_checksum(checksum_file_path) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:3.6 | |
| RUN apk add --no-cache tzdata | |
| ENV TZ Asia/Shanghai |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Host github.com | |
| ProxyCommand=socat - PROXY:your.proxy.ip:%h:%p,proxyport=yourproxyport |