Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ldap Connection #59

Closed
eddychilakiller opened this issue Sep 26, 2016 · 2 comments
Closed

Ldap Connection #59

eddychilakiller opened this issue Sep 26, 2016 · 2 comments

Comments

@eddychilakiller
Copy link

I've noticed that this dockerfile has no a php ldap extension, is any future version bunded with php ldap extension?

@tianon
Copy link
Member

tianon commented Sep 26, 2016

It looks like LDAP is an optional extension, not part of Drupal core (https://www.drupal.org/project/ldap), so I don't think it'd be appropriate for us to add this module by default unless it's used reasonably universally by the majority of Drupal users (which I cannot imagine being true, given how irritating maintaining an LDAP server is).

@yosifkit
Copy link
Member

It should be fairly simple to add support in your own Dockerfile. I think it should be fairly similar to the changes in docker-library/owncloud#74.

FROM drupal:7
RUN apt-get update && apt-get install -y libldap2-dev && rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
    && docker-php-ext-install ldap

@tianon tianon closed this as completed Apr 24, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants