improve Docker logging
This commit is contained in:
parent
9215de46a2
commit
36d1388a62
|
|
@ -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
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in New Issue