Compare commits

...

4 Commits

Author SHA1 Message Date
Markus Opolka
b35d566cda Upgrading to Version 3.17.8+190722 2019-07-31 15:21:13 +02:00
Markus Opolka
2ef998b0d7 Upgrading to Version 3.17.7+190627 2019-07-22 21:30:14 +02:00
Markus Opolka
02e2c9dc3a Update README 2019-07-18 11:08:43 +02:00
Markus Opolka
68881a29f1 More stable apt autoclean 2019-07-15 14:10:30 +02:00
4 changed files with 22 additions and 8 deletions

View File

@@ -62,6 +62,20 @@ To change to LimeSurvey configuration, you can mount a Volume into the Container
For further details on the settings see: https://manual.limesurvey.org/Optional_settings#Advanced_Path_Settings
# Running this image with docker-compose
The easiest way to get a fully featured and functional setup is using a docker-compose file. Several examples are provided in the repository.
```
docker-compose up
# Frontend
http://localhost:8080/
# Backend
http://localhost:8080/index.php/admin
```
# References
- https://www.limesurvey.org/

View File

@@ -1,7 +1,7 @@
FROM php:7.2-apache
LABEL maintainer="markus@martialblog.de"
ARG version='3.17.6+190624'
ARG sha256_checksum='5ff2959c235010ba5b29ab84285df23339b92a99fc334756e2c531671b3283c2'
ARG version='3.17.8+190722'
ARG sha256_checksum='1bed7812431d3fb268821dd9a40a8d9b2924f06f7b16e5f02a6cc2162c78476d'
# Install OS dependencies
RUN set -ex; \
@@ -17,7 +17,7 @@ RUN set -ex; \
libpq-dev \
netcat \
\
&& apt-get autoclean; apt-get autoremove; \
&& apt-get -y autoclean; apt-get -y autoremove; \
rm -rf /var/lib/apt/lists/*
# Link LDAP library for PHP ldap extension

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm-alpine
LABEL maintainer="markus@martialblog.de"
ARG version='3.17.6+190624'
ARG sha256_checksum='5ff2959c235010ba5b29ab84285df23339b92a99fc334756e2c531671b3283c2'
ARG version='3.17.8+190722'
ARG sha256_checksum='1bed7812431d3fb268821dd9a40a8d9b2924f06f7b16e5f02a6cc2162c78476d'
# Install OS dependencies
RUN set -ex; \

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm
LABEL maintainer="markus@martialblog.de"
ARG version='3.17.6+190624'
ARG sha256_checksum='5ff2959c235010ba5b29ab84285df23339b92a99fc334756e2c531671b3283c2'
ARG version='3.17.8+190722'
ARG sha256_checksum='1bed7812431d3fb268821dd9a40a8d9b2924f06f7b16e5f02a6cc2162c78476d'
# Install OS dependencies
RUN set -ex; \
@@ -17,7 +17,7 @@ RUN set -ex; \
libpq-dev \
netcat \
\
&& apt-get autoclean; apt-get autoremove; \
&& apt-get -y autoclean; apt-get -y autoremove; \
rm -rf /var/lib/apt/lists/*
# Link LDAP library for PHP ldap extension