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
@@ -213,7 +213,7 @@ simply mount this directories as a volume to `/var/lib/ldap` and `/etc/ldap/slap
213
213
docker run \
214
214
--volume /data/slapd/database:/var/lib/ldap \
215
215
--volume /data/slapd/config:/etc/ldap/slapd.d \
216
-
--detach osixia/openldap:1.4.0
216
+
--detach osixia/openldap:1.5.0
217
217
```
218
218
219
219
You can also use data volume containers. Please refer to:
@@ -235,7 +235,7 @@ If you are looking for a simple solution to administrate your ldap server you ca
235
235
By default, TLS is already configured and enabled, certificate is created using container hostname (it can be set by docker run --hostname option eg: ldap.example.org).
236
236
237
237
```sh
238
-
docker run --hostname ldap.my-company.com --detach osixia/openldap:1.4.0
238
+
docker run --hostname ldap.my-company.com --detach osixia/openldap:1.5.0
239
239
```
240
240
241
241
#### Use your own certificate
@@ -249,25 +249,25 @@ docker run \
249
249
--env LDAP_TLS_CRT_FILENAME=my-ldap.crt \
250
250
--env LDAP_TLS_KEY_FILENAME=my-ldap.key \
251
251
--env LDAP_TLS_CA_CRT_FILENAME=the-ca.crt \
252
-
--detach osixia/openldap:1.4.0
252
+
--detach osixia/openldap:1.5.0
253
253
```
254
254
255
255
Other solutions are available please refer to the [Advanced User Guide](#advanced-user-guide)
256
256
257
257
#### Disable TLS
258
258
Add --env LDAP_TLS=false to the run command:
259
259
260
-
docker run --env LDAP_TLS=false --detach osixia/openldap:1.4.0
260
+
docker run --env LDAP_TLS=false --detach osixia/openldap:1.5.0
261
261
262
262
### Multi master replication
263
263
Quick example, with the default config.
264
264
265
265
#Create the first ldap server, save the container id in LDAP_CID and get its IP:
266
-
LDAP_CID=$(docker run --hostname ldap.example.org --env LDAP_REPLICATION=true --detach osixia/openldap:1.4.0)
266
+
LDAP_CID=$(docker run --hostname ldap.example.org --env LDAP_REPLICATION=true --detach osixia/openldap:1.5.0)
Take care to link your environment files folder 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).
@@ -437,7 +437,7 @@ Note: the container will try to delete the **\*.startup.yaml** file after the en
0 commit comments