Redmine + MySQL + LDAP + SVN + GIT deploy automation with docker-compose
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM httpd:alpine
|
|
#ADD ./httpd.conf /usr/local/apache2/conf/httpd.conf
|
|
RUN apk update \
|
|
apk add apache2-mod-perl \
|
|
apache2-proxy \
|
|
mod_dav_svn \
|
|
perl-dbd-mysql \
|
|
perl-ldap \
|
|
subversion \
|
|
;
|
|
ADD ./Redmine.pm /usr/lib/perl5/Apache/Authn/Redmine.pm
|
|
|