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
@@ -69,7 +69,7 @@ but setting your own config.php is possible. 2 options:
69
69
70
70
- Link your config file at run time to `/container/service/phpldapadmin/assets/config.php` :
71
71
72
-
docker run --volume /data/my-config.php:/container/service/phpldapadmin/assets/config.php --detach osixia/phpldapadmin:0.6.8
72
+
docker run --volume /data/my-config.php:/container/service/phpldapadmin/assets/config.php --detach osixia/phpldapadmin:0.6.9
73
73
74
74
- Add your config file by extending or cloning this image, please refer to the [Advanced User Guide](#advanced-user-guide)
75
75
@@ -78,7 +78,7 @@ but setting your own config.php is possible. 2 options:
78
78
#### Use autogenerated certificate
79
79
By default HTTPS is enable, a certificate is created with the container hostname (it can be set by docker run --hostname option eg: phpldapadmin.my-company.com).
80
80
81
-
docker run --hostname phpldapadmin.my-company.com --detach osixia/phpldapadmin:0.6.8
81
+
docker run --hostname phpldapadmin.my-company.com --detach osixia/phpldapadmin:0.6.9
82
82
83
83
#### Use your own certificate
84
84
@@ -88,22 +88,22 @@ You can set your custom certificate at run time, by mounting a directory contain
Other solutions are available please refer to the [Advanced User Guide](#advanced-user-guide)
94
94
95
95
#### Disable HTTPS
96
96
Add --env PHPLDAPADMIN_HTTPS=false to the run command :
97
97
98
-
docker run --env PHPLDAPADMIN_HTTPS=false --detach osixia/phpldapadmin:0.6.8
98
+
docker run --env PHPLDAPADMIN_HTTPS=false --detach osixia/phpldapadmin:0.6.9
99
99
100
100
### Fix docker mounted file problems
101
101
102
102
You may have some problems with mounted files on some systems. The startup script try to make some file adjustment and fix files owner and permissions, this can result in multiple errors. See [Docker documentation](https://docs.docker.com/v1.4/userguide/dockervolumes/#mount-a-host-file-as-a-data-volume).
103
103
104
104
To fix that run the container with `--copy-service` argument :
105
105
106
-
docker run [your options] osixia/phpldapadmin:0.6.8 --copy-service
106
+
docker run [your options] osixia/phpldapadmin:0.6.9 --copy-service
107
107
108
108
### Debug
109
109
@@ -112,11 +112,11 @@ Available levels are: `none`, `error`, `warning`, `info`, `debug` and `trace`.
112
112
113
113
Example command to run the container in `debug` mode:
114
114
115
-
docker run --detach osixia/phpldapadmin:0.6.8 --loglevel debug
115
+
docker run --detach osixia/phpldapadmin:0.6.9 --loglevel debug
116
116
117
117
See all command line options:
118
118
119
-
docker run osixia/phpldapadmin:0.6.8 --help
119
+
docker run osixia/phpldapadmin:0.6.9 --help
120
120
121
121
## Environment Variables
122
122
@@ -169,7 +169,7 @@ See how to [set your own environment variables](#set-your-own-environment-variab
169
169
170
170
If you want to set this variable at docker run command add the tag `#PYTHON2BASH:` and convert the yaml in python:
To convert yaml to python online: http://yaml-online-parser.appspot.com/
175
175
@@ -202,14 +202,14 @@ Other environment variables:
202
202
Environment variables can be set by adding the --env argument in the command line, for example:
203
203
204
204
docker run --env PHPLDAPADMIN_LDAP_HOSTS="ldap.example.org" \
205
-
--detach osixia/phpldapadmin:0.6.8
205
+
--detach osixia/phpldapadmin:0.6.9
206
206
207
207
#### Link environment file
208
208
209
209
For example if your environment file is in : /data/environment/my-env.yaml
210
210
211
211
docker run --volume /data/environment/my-env.yaml:/container/environment/01-custom/env.yaml \
212
-
--detach osixia/phpldapadmin:0.6.8
212
+
--detach osixia/phpldapadmin:0.6.9
213
213
214
214
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).
215
215
@@ -219,13 +219,13 @@ This is the best solution if you have a private registry. Please refer to the [A
219
219
220
220
## Advanced User Guide
221
221
222
-
### Extend osixia/phpldapadmin:0.6.8 image
222
+
### Extend osixia/phpldapadmin:0.6.9 image
223
223
224
224
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