mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
Initial Commit
This commit is contained in:
13
apache/Dockerfile
Normal file
13
apache/Dockerfile
Normal 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
13
fpm/Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user