mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
* Add Dockerfiles for LimeSurvey 5.0 - This changes the default user to www-data in the Apache2 Images - Removed extra download layer - Add LS 5.0 Update Guide - Update base images to PHP 8.0 - Add Variable for showScriptName
15 lines
522 B
Makefile
15 lines
522 B
Makefile
# .PHONY: apache fpm fpm-alpine
|
|
|
|
apache-lts:
|
|
docker build --pull -t martialblog/limesurvey:3-apache 3.0/apache
|
|
apache-latest:
|
|
docker build --pull -t martialblog/limesurvey:5-apache 5.0/apache
|
|
fpm-alpine-lts:
|
|
docker build --pull -t martialblog/limesurvey:3-fpm-alpine 3.0/fpm-alpine
|
|
fpm-alpine-latest:
|
|
docker build --pull -t martialblog/limesurvey:5-fpm-alpine 5.0/fpm-alpine
|
|
fpm-lts:
|
|
docker build --pull -t martialblog/limesurvey:3-fpm 3.0/fpm
|
|
fpm-latest:
|
|
docker build --pull -t martialblog/limesurvey:5-fpm 5.0/fpm
|