Initial Commit

This commit is contained in:
Markus Opolka
2018-01-13 16:32:30 +01:00
parent fd3f76f3da
commit 825d193f69
2 changed files with 26 additions and 0 deletions

13
apache/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM php:7.2-apache
# Install PHP Plugins
RUN docker-php-ext-install ldap \
&& docker-php-ext-install imap \
&& docker-php-ext-install mbstring \
&& docker-php-ext-install zip \
# Download, unzip and chmod of LimeSurvey
RUN wget https://github.com/LimeSurvey/LimeSurvey/archive/3.0.0+171222.tar.gz -o lime.tar.gz && \
tar xzf lime.tar.gz && \
mv -t /var/www/html LimeSurvey*/* && \
chmod -R /var/www/html

13
fpm/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM php:7.2-apache
# Install PHP Plugins
RUN docker-php-ext-install ldap \
&& docker-php-ext-install imap \
&& docker-php-ext-install mbstring \
&& docker-php-ext-install zip \
# Download, unzip and chmod of LimeSurvey
RUN wget https://github.com/LimeSurvey/LimeSurvey/archive/3.0.0+171222.tar.gz -o lime.tar.gz && \
tar xzf lime.tar.gz && \
mv -t /var/www/html LimeSurvey*/* && \
chmod -R /var/www/html