Skip to content

Instantly share code, notes, and snippets.

View nazar-pc's full-sized avatar
🦀

Nazar Mokrynskyi nazar-pc

🦀
View GitHub Profile
@nazar-pc
nazar-pc / backup-docker-daily
Created July 9, 2015 21:42
Docker containers backup
#!/usr/bin/php
<?php
$local_backup_dir = '/backup-local';
$target_backup_dir = '/backup';
$backup_prefix = '';
$backup_suffix = '-'.date('l');
/**
* We'll make backups to local directory first and then move to target
*/
chdir($local_backup_dir);