85 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
| #
 | |
| #  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.
 | |
| #  See possible environment variables here: https://github.com/LDAPAccountManager/lam/blob/develop/lam-packaging/docker/.env
 | |
| #
 | |
| 
 | |
| FROM debian:buster-slim
 | |
| LABEL maintainer="Roland Gruber <post@rolandgruber.de>"
 | |
| 
 | |
| ARG LAM_RELEASE=7.0
 | |
| 
 | |
| ENV \
 | |
|     DEBIAN_FRONTEND=noninteractive \
 | |
|     DEBUG=''
 | |
| 
 | |
| 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 \
 | |
|         wget \
 | |
|     && \
 | |
|     rm /etc/apache2/sites-enabled/*default* && \
 | |
|     rm -rf /var/cache/apt /var/lib/apt/lists/*
 | |
| 
 | |
| # install LAM
 | |
| 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
 | |
| 
 | |
| # 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
 | |
| 
 | |
| # 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
 | |
| 
 | |
| COPY start.sh /usr/local/bin/start.sh
 | |
| 
 | |
| WORKDIR /var/lib/ldap-account-manager/config
 | |
| 
 | |
| # start Apache when container starts
 | |
| ENTRYPOINT ["/usr/bin/dumb-init", "--"]
 | |
| CMD [ "/usr/local/bin/start.sh" ]
 | |
| 
 | |
| HEALTHCHECK --interval=1m --timeout=10s \
 | |
|     CMD wget -qO- http://localhost/lam/ | grep -q '<title>LDAP Account Manager</title>'
 |