mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-11-27 02:14:14 +01:00
6a01a3379d
In the ldap.Dockerfile the django_ldap_auth module is installed to enable authentication againt LDAP servers.
8 lines
220 B
Docker
8 lines
220 B
Docker
ARG FROM_TAG=latest
|
|
FROM ninech/netbox:$FROM_TAG
|
|
|
|
RUN pip install django_auth_ldap
|
|
|
|
COPY docker/ldap_config.docker.py /opt/netbox/netbox/netbox/ldap_config.py
|
|
COPY configuration/ldap_config.py /etc/netbox/ldap_config.py
|