You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [Make your own backup-manager image](#make-your-own-backup-manager-image)
27
27
- [Tests](#tests)
28
28
- [Under the hood: osixia/light-baseimage](#under-the-hood-osixialight-baseimage)
@@ -31,7 +31,7 @@ An image to run periodically backup-manager.
31
31
## Quick start
32
32
33
33
# Run Backup Manager image
34
-
docker run --volume /host/data:/data-to-backup --detach osixia/backup-manager:0.1.6
34
+
docker run --volume /host/data:/data-to-backup --detach osixia/backup-manager:0.1.7
35
35
36
36
## Beginner Guide
37
37
@@ -50,7 +50,7 @@ but setting your own backup-manager.conf is possible. 2 options:
50
50
51
51
- Link your config file at run time to `/container/service/backup-manager/assets/backup-manager.conf` :
52
52
53
-
docker run --volume /data/my-backup-manager.conf:/container/service/backup-manager/assets/backup-manager.conf --detach osixia/backup-manager:0.1.6
53
+
docker run --volume /data/my-backup-manager.conf:/container/service/backup-manager/assets/backup-manager.conf --detach osixia/backup-manager:0.1.7
54
54
55
55
- Add your config file by extending or cloning this image, please refer to the [Advanced User Guide](#advanced-user-guide)
56
56
@@ -60,7 +60,7 @@ You may have some problems with mounted files on some systems. The startup scrip
60
60
61
61
To fix that run the container with `--copy-service` argument :
62
62
63
-
docker run [your options] osixia/backup-manager:0.1.6 --copy-service
63
+
docker run [your options] osixia/backup-manager:0.1.7 --copy-service
64
64
65
65
### Debug
66
66
@@ -69,11 +69,11 @@ Available levels are: `none`, `error`, `warning`, `info`, `debug` and `trace`.
69
69
70
70
Example command to run the container in `debug` mode:
71
71
72
-
docker run --detach osixia/backup-manager:0.1.6 --loglevel debug
72
+
docker run --detach osixia/backup-manager:0.1.7 --loglevel debug
73
73
74
74
See all command line options:
75
75
76
-
docker run osixia/backup-manager:0.1.6 --help
76
+
docker run osixia/backup-manager:0.1.7 --help
77
77
78
78
## Environment Variables
79
79
@@ -84,7 +84,7 @@ See how to [set your own environment variables](#set-your-own-environment-variab
84
84
85
85
-**BACKUP_MANAGER_TARBALL_DIRECTORIES**: Directories to backup: paths without spaces in their name. Defaults to `/data-to-backup /data-to-backup2`.
86
86
87
-
-**BACKUP_MANAGER_CRON_EXP**: Cron expression to schedule backup-manager execution. Defaults to `"0 4 * * *"`. Every days at 4am.
87
+
-**BACKUP_MANAGER_CRON_EXP**: Cron expression to schedule backup-manager execution. Defaults to `0 4 * * *`. Every days at 4am.
88
88
89
89
-**BACKUP_MANAGER_TTL**: Backup TTL in days. Defaults to `15`.
90
90
@@ -112,14 +112,14 @@ More help: https://raw.githubusercontent.com/sukria/Backup-Manager/master/doc/us
112
112
Environment variables can be set by adding the --env argument in the command line, for example:
113
113
114
114
docker run --env BACKUP_MANAGER_TARBALL_DIRECTORIES="/home/billy" \
115
-
--detach osixia/backup-manager:0.1.6
115
+
--detach osixia/backup-manager:0.1.7
116
116
117
117
#### Link environment file
118
118
119
119
For example if your environment file is in : /data/backup-manager/environment/my-env.yaml
120
120
121
121
docker run --volume /data/backup-manager/environment/my-env.yaml:/container/environment/01-custom/env.yaml \
122
-
--detach osixia/backup-manager:0.1.6
122
+
--detach osixia/backup-manager:0.1.7
123
123
124
124
Take care to link your environment file to `/container/environment/XX-somedir` (with XX < 99 so they will be processed before default environment files) and not directly to `/container/environment` because this directory contains predefined baseimage environment files to fix container environment (INITRD, LANG, LANGUAGE and LC_CTYPE).
125
125
@@ -129,13 +129,13 @@ This is the best solution if you have a private registry. Please refer to the [A
129
129
130
130
## Advanced User Guide
131
131
132
-
### Extend osixia/backup-manager:0.1.6 image
132
+
### Extend osixia/backup-manager:0.1.7 image
133
133
134
134
If you need to add your custom TLS certificate, bootstrap config or environment files the easiest way is to extends this image.
0 commit comments