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 phpLDAPadmin image](#make-your-own-phpldapadmin-image)
25
25
- [Tests](#tests)
26
26
- [Kubernetes](#kubernetes)
@@ -49,7 +49,7 @@ Backups are created in the directory `/data/backup` that should be mapped has vo
49
49
50
50
docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \
51
51
--volume /data/openldap/backup:/data/backup \
52
-
--detach osixia/openldap-backup:1.2.0
52
+
--detach osixia/openldap-backup:1.2.1
53
53
54
54
55
55
For more information about docker data volume, please refer to :
@@ -63,11 +63,11 @@ Available levels are: `none`, `error`, `warning`, `info`, `debug` and `trace`.
63
63
64
64
Example command to run the container in `debug` mode:
65
65
66
-
docker run --detach osixia/openldap-backup:1.2.0 --loglevel debug
66
+
docker run --detach osixia/openldap-backup:1.2.1 --loglevel debug
67
67
68
68
See all command line options:
69
69
70
-
docker run osixia/openldap-backup:1.2.0 --help
70
+
docker run osixia/openldap-backup:1.2.1 --help
71
71
72
72
73
73
## Environment Variables
@@ -89,15 +89,15 @@ See how to [set your own environment variables](#set-your-own-environment-variab
89
89
Environment variables can be set by adding the --env argument in the command line, for example:
90
90
91
91
docker run --env LDAP_BACKUP_CONFIG_CRON_EXP="0 5 * * *" \
92
-
--detach osixia/openldap-backup:1.2.0
92
+
--detach osixia/openldap-backup:1.2.1
93
93
94
94
95
95
#### Link environment file
96
96
97
97
For example if your environment file is in : /data/ldap/environment/my-env.yaml
98
98
99
99
docker run --volume /data/ldap/environment/my-env.yaml:/container/environment/01-custom/env.yaml \
100
-
--detach osixia/openldap-backup:1.2.0
100
+
--detach osixia/openldap-backup:1.2.1
101
101
102
102
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).
103
103
@@ -107,13 +107,13 @@ This is the best solution if you have a private registry. Please refer to the [A
107
107
108
108
## Advanced User Guide
109
109
110
-
### Extend osixia/openldap-backup:1.2.0 image
110
+
### Extend osixia/openldap-backup:1.2.1 image
111
111
112
112
If you need to add your custom environment files you can extends this image.
0 commit comments