@@ -8,18 +8,90 @@ Whether a service supports backups is specified on the documentation page of eac
8
8
9
9
## Frequency and volume
10
10
11
- By default, your data is backed up automatically ** every day** between 00:00:00 UTC and 01:00:00 UTC, unless you update your settings:
12
-
13
- ### In GUI
14
-
15
- Following changes are available in Zerops GUI. Go to the service detail and choose ** Backups List & Configuration** section in the left menu.
16
-
17
- - do a one-time backup of your data
18
- - change time of your automatic backup
19
- - turn off backing up your data completely
20
- - view all of your backups
21
- - download a backup
22
- - delete a backup
11
+ By default, your data is backed up automatically ** every day** between 00:00:00 UTC and 01:00:00 UTC, unless you update your settings.
12
+
13
+ ### Managing Backups in GUI
14
+
15
+ To manage backups, go to the service detail and choose ** Backups List & Configuration** section in the left menu.
16
+
17
+ #### Configure Backup Settings
18
+
19
+ From this section, you can:
20
+ - Do a one-time backup of your data
21
+ - Change the frequency of your automatic backups
22
+ - Turn off backing up your data completely
23
+
24
+ <p align = " center" >
25
+ <img
26
+ src = " /img/screenshots/backup_frequency.png"
27
+ alt = " Backup frequency configuration"
28
+ width = " 90%"
29
+ height = " auto"
30
+ />
31
+ </p >
32
+
33
+ #### Backup Frequency Options
34
+
35
+ You can configure backups with several preset schedules:
36
+ - ** No backups** : Disable automatic backups (not recommended)
37
+ - ** Once a day** : Daily backups at the specified time
38
+ - ** Once a week** : Weekly backups on the specified day and time
39
+ - ** Once a month** : Monthly backups on the specified day and time
40
+ - ** Custom CRON** : Define a custom schedule using CRON syntax
41
+
42
+ For the Custom CRON option, you can use the following syntax:
43
+
44
+ <table className = " w-full" >
45
+ <thead >
46
+ <tr >
47
+ <th className = " whitespace-nowrap w-fit" >Field name</th >
48
+ <th className = " w-full" >Allowed values</th >
49
+ </tr >
50
+ </thead >
51
+ <tbody >
52
+ <tr className = " text-left" >
53
+ <td className = " w-fit" >Minute</td >
54
+ <td className = " w-fit" >0-59</td >
55
+ </tr >
56
+ <tr className = " text-left" >
57
+ <td className = " w-fit" >Hour</td >
58
+ <td className = " w-fit" >0-23</td >
59
+ </tr >
60
+ <tr className = " text-left" >
61
+ <td className = " w-fit" >Day</td >
62
+ <td className = " w-fit" >1-31</td >
63
+ </tr >
64
+ <tr className = " text-left" >
65
+ <td className = " w-fit" >Month</td >
66
+ <td className = " w-fit" >1-12</td >
67
+ </tr >
68
+ <tr className = " text-left" >
69
+ <td className = " w-fit" >Week Day</td >
70
+ <td className = " w-fit" >0–7; both 0 and 7 represent Sunday</td >
71
+ </tr >
72
+ </tbody >
73
+ </table >
74
+
75
+ Examples:
76
+ - ` 0 2 * * * ` - Every day at 2:00 AM
77
+ - ` 0 4 * * 0 ` - Every Sunday at 4:00 AM
78
+ - ` 0 0 1 * * ` - First day of every month at midnight
79
+
80
+ #### View and Manage Backup Files
81
+
82
+ In the same section, you can:
83
+ - View all of your backups
84
+ - Download a backup
85
+ - Delete a backup
86
+
87
+ <p align = " center" >
88
+ <img
89
+ src = " /img/screenshots/list_of_backups.png"
90
+ alt = " List of backups"
91
+ width = " 90%"
92
+ height = " auto"
93
+ />
94
+ </p >
23
95
24
96
### Limits
25
97
0 commit comments