👷 — Fix CI for new openldap container
This commit is contained in:
parent
acb4f69859
commit
2c11ea5581
4
Makefile
4
Makefile
|
@ -6,7 +6,7 @@ CARTON ?= carton exec
|
|||
REAL_LUFI ?= script/application
|
||||
LUFI ?= script/lufi
|
||||
LDAP_CONTAINER_IMAGE ?= rroemhild/test-openldap:latest
|
||||
LOCAL_LDAP_PORT ?= 389
|
||||
LOCAL_LDAP_PORT ?= 10389
|
||||
LOCAL_SWIFT_PORT ?= 8080
|
||||
SWIFT_CONTAINER_IMAGE ?= swiftstack/picoswiftstack:latest
|
||||
MORBO_HOST ?= 0.0.0.0
|
||||
|
@ -33,7 +33,7 @@ dev: clean
|
|||
$(CARTON) morbo $(LUFI) --listen http://$(MORBO_HOST):$(MORBO_PORT) --watch lib/ --watch script/ --watch themes/ --watch lufi.conf
|
||||
|
||||
ldap:
|
||||
sudo docker run --privileged -d -p $(LOCAL_LDAP_PORT):389 $(LDAP_CONTAINER_IMAGE); exit 0
|
||||
sudo docker run -d -p $(LOCAL_LDAP_PORT):10389 $(LDAP_CONTAINER_IMAGE); exit 0
|
||||
|
||||
ldapdev: ldap dev
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@
|
|||
# Set `ldap` if you want that only authenticated users can upload files
|
||||
# Please note that everybody can still download files
|
||||
# optional, no default
|
||||
#ldap => { uri => 'ldap://rroemhild-test-openldap', user_tree => 'ou=people,dc=planetexpress,dc=com', bind_dn => 'cn=admin,dc=planetexpress,dc=com', bind_pwd => 'GoodNewsEveryone', user_attr => 'uid', user_filter => '' },
|
||||
#ldap => { uri => 'ldap://rroemhild-test-openldap:10389', user_tree => 'ou=people,dc=planetexpress,dc=com', bind_dn => 'cn=admin,dc=planetexpress,dc=com', bind_pwd => 'GoodNewsEveryone', user_attr => 'uid', user_filter => '' },
|
||||
|
||||
# If you've set ldap above, the session will last `session_duration` seconds before
|
||||
# the user needs to reauthenticate
|
||||
|
|
|
@ -205,7 +205,7 @@
|
|||
# Set `ldap` if you want that only authenticated users can upload files
|
||||
# Please note that everybody can still download files
|
||||
# optional, no default
|
||||
#ldap => { uri => 'ldap://rroemhild-test-openldap', user_tree => 'ou=people,dc=planetexpress,dc=com', bind_dn => 'cn=admin,dc=planetexpress,dc=com', bind_pwd => 'GoodNewsEveryone', user_attr => 'uid', user_filter => '' },
|
||||
#ldap => { uri => 'ldap://rroemhild-test-openldap:10389', user_tree => 'ou=people,dc=planetexpress,dc=com', bind_dn => 'cn=admin,dc=planetexpress,dc=com', bind_pwd => 'GoodNewsEveryone', user_attr => 'uid', user_filter => '' },
|
||||
|
||||
# If you've set ldap above, the session will last `session_duration` seconds before
|
||||
# the user needs to reauthenticate
|
||||
|
|
|
@ -209,7 +209,7 @@
|
|||
# Set `ldap` if you want that only authenticated users can upload files
|
||||
# Please note that everybody can still download files
|
||||
# optional, no default
|
||||
#ldap => { uri => 'ldap://rroemhild-test-openldap', user_tree => 'ou=people,dc=planetexpress,dc=com', bind_dn => 'cn=admin,dc=planetexpress,dc=com', bind_pwd => 'GoodNewsEveryone', user_attr => 'uid', user_filter => '' },
|
||||
#ldap => { uri => 'ldap://rroemhild-test-openldap:10389', user_tree => 'ou=people,dc=planetexpress,dc=com', bind_dn => 'cn=admin,dc=planetexpress,dc=com', bind_pwd => 'GoodNewsEveryone', user_attr => 'uid', user_filter => '' },
|
||||
|
||||
# If you've set ldap above, the session will last `session_duration` seconds before
|
||||
# the user needs to reauthenticate
|
||||
|
|
Loading…
Reference in New Issue