Brice Burgess
Brice Burgess
very tasty! great job
filtering is a nice convenience -- and often allows for faster development of tests. Jasmine uses the word "focused", e.g. prefixing a `@test` with an f (`@ftest`) will limit execution...
I work around this issue by copying the busybox `sh` into the container at a less-common location (to reduce potental exploits). this works in google's distroless images. here's an example...
@bcoca we have a deployment playbook against a set of static hosts. if one is unreachable, we need to fail (to avoid the potential of having inconsistency amongst the hosts)....
I was referred here from the compose-cli / v2 project. IMO it would be most intuitive to support the `--ssh` build argument on parity with the `docker build` client and...
My initial thought is to use remote-to-remote for this, e.g. First Backup ("base") ``` rclone copy /path/to/backup remote:/backups/base ``` Subsequent Backups ``` date=`date "+%Y%m%d_%H:%M:%S"` rclone sync remote:/backups/base remote:/backups/$date rclone sync...
Nick, Great! This is pretty exciting. Bucket-to-bucket copying sounds promising. What about this approach as well; `rclone sync /path/to/backup remote:/backups/base remote:/backups/changes.2015-01-19` Where rclone would compare /path/to/backup against remote:/backups/base , and...
Nick, Right -- totally agree re: new rclone command for this. The precursor is getting bucket-to-bucket functionality. Just FYI, I'm super excited about rclone && am loving your work. For...
I've added ansible scripts to 1) install rclone and 2) implement the above backup strategy on a crontab based system (still need to make a systemd timer compatible version for...
Nick, I've been playing with [Syncthing](https://github.com/syncthing/syncthing) of late. It uses the very cool idea of "versions" I believe derrived from Dropbox and/or Bittorret Sync. Vs. the incremental ideas outlined --...