summaryrefslogtreecommitdiffstats
path: root/docker-compose-postgresql.yml
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-11-20 12:11:37 +0200
committerLauri Ojansivu <x@xet7.org>2018-11-20 12:11:37 +0200
commit8e3f53021775069dba125efd4b7200d0d70a1ed1 (patch)
treed20495c8f50060f3fc16d96cb8f65a9f5805b031 /docker-compose-postgresql.yml
parentf9b272c223fb61d35dbf6cb741df80c96a0f0118 (diff)
downloadwekan-8e3f53021775069dba125efd4b7200d0d70a1ed1.tar.gz
wekan-8e3f53021775069dba125efd4b7200d0d70a1ed1.tar.bz2
wekan-8e3f53021775069dba125efd4b7200d0d70a1ed1.zip
- Add [LDAP_FULLNAME_FIELD](https://github.com/wekan/wekan-ldap/issues/10). Thanks to alkemyst and xet7.
Closes wekan/wekan-ldap#21, closes wekan/wekan-ldap#10
Diffstat (limited to 'docker-compose-postgresql.yml')
-rw-r--r--docker-compose-postgresql.yml19
1 files changed, 11 insertions, 8 deletions
diff --git a/docker-compose-postgresql.yml b/docker-compose-postgresql.yml
index 7689cc71..c8844408 100644
--- a/docker-compose-postgresql.yml
+++ b/docker-compose-postgresql.yml
@@ -41,15 +41,15 @@ services:
- /bin/bash
- "-c"
- mongo --nodb --eval '
- var db;
- while (!db) {
- try {
- db = new Mongo("mongodb:27017").getDB("local");
- } catch(ex) {}
- sleep(3000);
- };
+ var db;
+ while (!db) {
+ try {
+ db = new Mongo("mongodb:27017").getDB("local");
+ } catch(ex) {}
+ sleep(3000);
+ };
rs.initiate({_id:"rs1",members:[{_id:0,host:"mongodb:27017"}]});
- ' 1>/dev/null 2>&1 &
+ ' 1>/dev/null 2>&1 &
mongod --replSet rs1
wekan:
image: quay.io/wekan/wekan
@@ -213,6 +213,9 @@ services:
# LDAP_USERNAME_FIELD : Which field contains the ldap username
# example : LDAP_USERNAME_FIELD=username
#- LDAP_USERNAME_FIELD=
+ # LDAP_FULLNAME_FIELD : Which field contains the ldap fullname
+ # example : LDAP_FULLNAME_FIELD=fullname
+ #- LDAP_FULLNAME_FIELD=
# LDAP_MERGE_EXISTING_USERS :
# example : LDAP_MERGE_EXISTING_USERS=true
#- LDAP_MERGE_EXISTING_USERS=false