mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
Compare commits
3 Commits
5.3.30-220
...
3.28.24-22
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4077b9d0c8 | ||
|
|
0ce040715c | ||
|
|
d4072def38 |
@@ -59,8 +59,8 @@ RUN a2enmod headers rewrite remoteip; \
|
||||
# Use the default production configuration
|
||||
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
||||
|
||||
ARG version="3.28.23+220809"
|
||||
ARG sha256_checksum="9cc2c75e68250a75d3808383410f1e437d9ecba947c5201471200b65baf74027"
|
||||
ARG version="3.28.24+220816"
|
||||
ARG sha256_checksum="d372a92c415d1ad5a3452b252f42f8f76ced6129a29068996b40170f40795b11"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ARG USER=root
|
||||
ARG LISTEN_PORT=80
|
||||
|
||||
@@ -33,8 +33,8 @@ RUN set -ex; \
|
||||
tidy \
|
||||
zip
|
||||
|
||||
ARG version="3.28.23+220809"
|
||||
ARG sha256_checksum="9cc2c75e68250a75d3808383410f1e437d9ecba947c5201471200b65baf74027"
|
||||
ARG version="3.28.24+220816"
|
||||
ARG sha256_checksum="d372a92c415d1ad5a3452b252f42f8f76ced6129a29068996b40170f40795b11"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ENV LIMESURVEY_VERSION=$version
|
||||
|
||||
|
||||
@@ -46,8 +46,8 @@ RUN set -ex; \
|
||||
tidy \
|
||||
zip
|
||||
|
||||
ARG version="3.28.23+220809"
|
||||
ARG sha256_checksum="9cc2c75e68250a75d3808383410f1e437d9ecba947c5201471200b65baf74027"
|
||||
ARG version="3.28.24+220816"
|
||||
ARG sha256_checksum="d372a92c415d1ad5a3452b252f42f8f76ced6129a29068996b40170f40795b11"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ENV LIMESURVEY_VERSION=$version
|
||||
|
||||
|
||||
@@ -60,8 +60,8 @@ RUN a2enmod headers rewrite remoteip; \
|
||||
# Use the default production configuration
|
||||
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
||||
|
||||
ARG version="5.3.30+220808"
|
||||
ARG sha256_checksum="9a2a7a52f5b4ff1faed82ebb76bb6512352d428d3dba02f5e9bb6352876fafcf"
|
||||
ARG version="5.3.31+220815"
|
||||
ARG sha256_checksum="4edc26ab138eabe7038bdbd62e957949e9745f64e2f68fe20655fe7dbe503ded"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ARG USER=www-data
|
||||
ARG LISTEN_PORT=8080
|
||||
|
||||
@@ -34,8 +34,8 @@ RUN set -ex; \
|
||||
tidy \
|
||||
zip
|
||||
|
||||
ARG version="5.3.30+220808"
|
||||
ARG sha256_checksum="9a2a7a52f5b4ff1faed82ebb76bb6512352d428d3dba02f5e9bb6352876fafcf"
|
||||
ARG version="5.3.31+220815"
|
||||
ARG sha256_checksum="4edc26ab138eabe7038bdbd62e957949e9745f64e2f68fe20655fe7dbe503ded"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ARG USER=www-data
|
||||
ENV LIMESURVEY_VERSION=$version
|
||||
|
||||
@@ -46,8 +46,8 @@ RUN set -ex; \
|
||||
tidy \
|
||||
zip
|
||||
|
||||
ARG version="5.3.30+220808"
|
||||
ARG sha256_checksum="9a2a7a52f5b4ff1faed82ebb76bb6512352d428d3dba02f5e9bb6352876fafcf"
|
||||
ARG version="5.3.31+220815"
|
||||
ARG sha256_checksum="4edc26ab138eabe7038bdbd62e957949e9745f64e2f68fe20655fe7dbe503ded"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ARG USER=www-data
|
||||
ENV LIMESURVEY_VERSION=$version
|
||||
|
||||
14
Makefile
14
Makefile
@@ -1,14 +1,16 @@
|
||||
# .PHONY: apache fpm fpm-alpine
|
||||
|
||||
RUNTIME = podman
|
||||
|
||||
apache-lts:
|
||||
docker build --pull -t docker.io/martialblog/limesurvey:3-apache 3.0/apache
|
||||
$(RUNTIME) build --pull -t docker.io/martialblog/limesurvey:3-apache 3.0/apache
|
||||
apache-latest:
|
||||
docker build --pull -t docker.io/martialblog/limesurvey:5-apache 5.0/apache
|
||||
$(RUNTIME) build --pull -t docker.io/martialblog/limesurvey:5-apache 5.0/apache
|
||||
fpm-alpine-lts:
|
||||
docker build --pull -t docker.io/martialblog/limesurvey:3-fpm-alpine 3.0/fpm-alpine
|
||||
$(RUNTIME) build --pull -t docker.io/martialblog/limesurvey:3-fpm-alpine 3.0/fpm-alpine
|
||||
fpm-alpine-latest:
|
||||
docker build --pull -t docker.io/martialblog/limesurvey:5-fpm-alpine 5.0/fpm-alpine
|
||||
$(RUNTIME) build --pull -t docker.io/martialblog/limesurvey:5-fpm-alpine 5.0/fpm-alpine
|
||||
fpm-lts:
|
||||
docker build --pull -t docker.io/martialblog/limesurvey:3-fpm 3.0/fpm
|
||||
$(RUNTIME) build --pull -t docker.io/martialblog/limesurvey:3-fpm 3.0/fpm
|
||||
fpm-latest:
|
||||
docker build --pull -t docker.io/martialblog/limesurvey:5-fpm 5.0/fpm
|
||||
$(RUNTIME) build --pull -t docker.io/martialblog/limesurvey:5-fpm 5.0/fpm
|
||||
|
||||
Reference in New Issue
Block a user