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
@@ -68,7 +68,7 @@ but setting your own config.php is possible. 2 options:
68
68
69
69
- Link your config file at run time to `/container/service/phpldapadmin/assets/config/config.php` :
70
70
71
-
docker run --volume /data/my-config.php:/container/service/phpldapadmin/assets/config/config.php --detach osixia/phpldapadmin:0.8.0
71
+
docker run --volume /data/my-config.php:/container/service/phpldapadmin/assets/config/config.php --detach osixia/phpldapadmin:0.9.0
72
72
73
73
- Add your config file by extending or cloning this image, please refer to the [Advanced User Guide](#advanced-user-guide)
74
74
@@ -77,7 +77,7 @@ but setting your own config.php is possible. 2 options:
77
77
#### Use autogenerated certificate
78
78
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).
79
79
80
-
docker run --hostname phpldapadmin.my-company.com --detach osixia/phpldapadmin:0.8.0
80
+
docker run --hostname phpldapadmin.my-company.com --detach osixia/phpldapadmin:0.9.0
81
81
82
82
#### Use your own certificate
83
83
@@ -87,22 +87,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)
93
93
94
94
#### Disable HTTPS
95
95
Add --env PHPLDAPADMIN_HTTPS=false to the run command :
96
96
97
-
docker run --env PHPLDAPADMIN_HTTPS=false --detach osixia/phpldapadmin:0.8.0
97
+
docker run --env PHPLDAPADMIN_HTTPS=false --detach osixia/phpldapadmin:0.9.0
98
98
99
99
### Fix docker mounted file problems
100
100
101
101
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).
102
102
103
103
To fix that run the container with `--copy-service` argument :
104
104
105
-
docker run [your options] osixia/phpldapadmin:0.8.0 --copy-service
105
+
docker run [your options] osixia/phpldapadmin:0.9.0 --copy-service
106
106
107
107
### Debug
108
108
@@ -111,11 +111,11 @@ Available levels are: `none`, `error`, `warning`, `info`, `debug` and `trace`.
111
111
112
112
Example command to run the container in `debug` mode:
113
113
114
-
docker run --detach osixia/phpldapadmin:0.8.0 --loglevel debug
114
+
docker run --detach osixia/phpldapadmin:0.9.0 --loglevel debug
115
115
116
116
See all command line options:
117
117
118
-
docker run osixia/phpldapadmin:0.8.0 --help
118
+
docker run osixia/phpldapadmin:0.9.0 --help
119
119
120
120
## Environment Variables
121
121
@@ -168,7 +168,7 @@ See how to [set your own environment variables](#set-your-own-environment-variab
168
168
169
169
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/
174
174
@@ -215,14 +215,14 @@ Other environment variables:
215
215
Environment variables can be set by adding the --env argument in the command line, for example:
216
216
217
217
docker run --env PHPLDAPADMIN_LDAP_HOSTS="ldap.example.org" \
218
-
--detach osixia/phpldapadmin:0.8.0
218
+
--detach osixia/phpldapadmin:0.9.0
219
219
220
220
#### Link environment file
221
221
222
222
For example if your environment file is in : /data/environment/my-env.yaml
223
223
224
224
docker run --volume /data/environment/my-env.yaml:/container/environment/01-custom/env.yaml \
225
-
--detach osixia/phpldapadmin:0.8.0
225
+
--detach osixia/phpldapadmin:0.9.0
226
226
227
227
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).
228
228
@@ -232,13 +232,13 @@ This is the best solution if you have a private registry. Please refer to the [A
232
232
233
233
## Advanced User Guide
234
234
235
-
### Extend osixia/phpldapadmin:0.8.0 image
235
+
### Extend osixia/phpldapadmin:0.9.0 image
236
236
237
237
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