improve Docker logging

This commit is contained in:
Tyler 2020-09-30 17:04:16 -05:00
parent 9215de46a2
commit 36d1388a62
1 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
*/15 * * * * /bin/15min_backup
0 * * * * /bin/hourly_backup
0 0 * * * /bin/daily_backup
0 0 * * 0 /bin/weekly_backup
0 0 1 * * /bin/monthly_backup
# filler
*/15 * * * * /bin/15min_backup > /dev/stdout 2>&1
0 * * * * /bin/hourly_backup > /dev/stdout 2>&1
0 0 * * * /bin/daily_backup > /dev/stdout 2>&1
0 0 * * 0 /bin/weekly_backup > /dev/stdout 2>&1
0 0 1 * * /bin/monthly_backup > /dev/stdout 2>&1
#