Initial commit.
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
# Pull base image from authorized source
|
||||
FROM ubuntu:24.04
|
||||
|
||||
LABEL description="OpenLDAP" \
|
||||
maintainer="Eric Rakestraw <eric@maximumdirect.net>" \
|
||||
version="Ubuntu 24.04"
|
||||
|
||||
# Install the necessary packages for LDAP Proxy server
|
||||
RUN apt-get -q update && apt-get install -q --yes slapd slapd-contrib ldap-utils
|
||||
|
||||
# Remove the slapd.d directory, since we will be using slapd.conf.
|
||||
RUN rm -rf /etc/ldap/slapd.d
|
||||
|
||||
# Run with debug enabled; this will print logs to STDOUT.
|
||||
CMD ["/usr/sbin/slapd", "-d1"]
|
||||
Reference in New Issue
Block a user