2019-01-12 10:02:39 +00:00
|
|
|
#
|
|
|
|
# Docker image for LDAP Account Manager
|
|
|
|
|
|
|
|
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
|
|
|
# Copyright (C) 2019 Roland Gruber
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
#
|
|
|
|
# Usage: run this command: docker run -p 8080:80 -it -d ldapaccountmanager/lam:stable
|
|
|
|
#
|
|
|
|
# Then access LAM at http://localhost:8080/
|
|
|
|
# You can change the port 8080 if needed.
|
2019-12-09 17:19:11 +00:00
|
|
|
# See possible environment variables here: https://github.com/LDAPAccountManager/lam/blob/develop/lam-packaging/docker/.env
|
2019-01-12 10:02:39 +00:00
|
|
|
#
|
|
|
|
|
2019-11-03 09:31:42 +00:00
|
|
|
FROM debian:buster-slim
|
|
|
|
LABEL maintainer="Roland Gruber <post@rolandgruber.de>"
|
2019-01-12 10:02:39 +00:00
|
|
|
|
2019-12-21 18:47:18 +00:00
|
|
|
ARG LAM_RELEASE=7.0
|
2019-01-12 10:02:39 +00:00
|
|
|
|
2019-11-03 09:31:42 +00:00
|
|
|
ENV \
|
|
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
|
|
DEBUG=''
|
2019-01-12 10:02:39 +00:00
|
|
|
|
2019-11-03 09:31:42 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install --no-install-recommends -y \
|
|
|
|
apache2 \
|
|
|
|
ca-certificates \
|
|
|
|
dumb-init \
|
|
|
|
fonts-dejavu \
|
|
|
|
libapache2-mod-php \
|
|
|
|
php \
|
|
|
|
php-curl \
|
|
|
|
php-gd \
|
|
|
|
php-imagick \
|
|
|
|
php-ldap \
|
|
|
|
php-monolog \
|
|
|
|
php-phpseclib \
|
|
|
|
php-xml \
|
|
|
|
php-zip \
|
2020-01-10 19:07:10 +00:00
|
|
|
php-imap \
|
2019-11-03 09:31:42 +00:00
|
|
|
wget \
|
|
|
|
&& \
|
|
|
|
rm /etc/apache2/sites-enabled/*default* && \
|
|
|
|
rm -rf /var/cache/apt /var/lib/apt/lists/*
|
2019-01-12 10:02:39 +00:00
|
|
|
|
|
|
|
# install LAM
|
2019-11-03 09:31:42 +00:00
|
|
|
RUN wget http://prdownloads.sourceforge.net/lam/ldap-account-manager_${LAM_RELEASE}-1_all.deb?download \
|
|
|
|
-O /tmp/ldap-account-manager_${LAM_RELEASE}-1_all.deb && \
|
|
|
|
dpkg -i /tmp/ldap-account-manager_${LAM_RELEASE}-1_all.deb && \
|
|
|
|
rm -f /tmp/ldap-account-manager_${LAM_RELEASE}-1_all.deb
|
2019-01-12 10:02:39 +00:00
|
|
|
|
2019-11-03 09:31:42 +00:00
|
|
|
# redirect Apache logging
|
|
|
|
RUN sed -e 's,^ErrorLog.*,ErrorLog "|/bin/cat",' -i /etc/apache2/apache2.conf
|
|
|
|
# because there is no logging set in the lam vhost logging goes to other_vhost_access.log
|
|
|
|
RUN ln -sf /dev/stdout /var/log/apache2/other_vhosts_access.log
|
2019-01-12 10:02:39 +00:00
|
|
|
|
|
|
|
# add redirect for /
|
|
|
|
RUN a2enmod rewrite
|
|
|
|
RUN echo "RewriteEngine on" >> /etc/apache2/conf-enabled/laminit.conf \
|
|
|
|
&& echo "RewriteRule ^/$ /lam/ [R,L]" >> /etc/apache2/conf-enabled/laminit.conf
|
|
|
|
|
2019-11-03 09:31:42 +00:00
|
|
|
COPY start.sh /usr/local/bin/start.sh
|
|
|
|
|
|
|
|
WORKDIR /var/lib/ldap-account-manager/config
|
|
|
|
|
2019-01-12 10:02:39 +00:00
|
|
|
# start Apache when container starts
|
2019-11-03 09:31:42 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
|
|
|
CMD [ "/usr/local/bin/start.sh" ]
|
2019-01-12 10:02:39 +00:00
|
|
|
|
2019-11-03 09:31:42 +00:00
|
|
|
HEALTHCHECK --interval=1m --timeout=10s \
|
|
|
|
CMD wget -qO- http://localhost/lam/ | grep -q '<title>LDAP Account Manager</title>'
|