mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-07 08:59:23 +01:00
Compare commits
6 Commits
5.4.7-2210
...
3.28.37-22
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
51f45a8513 | ||
|
|
f0b55dacf9 | ||
|
|
d9eb6aff10 | ||
|
|
d979eb5aa4 | ||
|
|
55d9b48441 | ||
|
|
c0167b9a23 |
@@ -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.34+221021"
|
||||
ARG sha256_checksum="57bd828f5379802c24c708cb2d3e3db4af1e4718733aa74b7a839977d8ef3462"
|
||||
ARG version="3.28.37+221108"
|
||||
ARG sha256_checksum="6ccbf45520facc49328c5c5f98d655ce2d1c12fcdcf67cf07b976739d6a9779f"
|
||||
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.34+221021"
|
||||
ARG sha256_checksum="57bd828f5379802c24c708cb2d3e3db4af1e4718733aa74b7a839977d8ef3462"
|
||||
ARG version="3.28.37+221108"
|
||||
ARG sha256_checksum="6ccbf45520facc49328c5c5f98d655ce2d1c12fcdcf67cf07b976739d6a9779f"
|
||||
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.34+221021"
|
||||
ARG sha256_checksum="57bd828f5379802c24c708cb2d3e3db4af1e4718733aa74b7a839977d8ef3462"
|
||||
ARG version="3.28.37+221108"
|
||||
ARG sha256_checksum="6ccbf45520facc49328c5c5f98d655ce2d1c12fcdcf67cf07b976739d6a9779f"
|
||||
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.4.7+221019"
|
||||
ARG sha256_checksum="75607c486313da2be4c59aaf2fa00fcf0964374f0e520f2791f011a65fba5f89"
|
||||
ARG version="5.4.9+221101"
|
||||
ARG sha256_checksum="945b167e0cc0e690e4566c854924b84f307a0d791fb64762d903472c2c51f692"
|
||||
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.4.7+221019"
|
||||
ARG sha256_checksum="75607c486313da2be4c59aaf2fa00fcf0964374f0e520f2791f011a65fba5f89"
|
||||
ARG version="5.4.9+221101"
|
||||
ARG sha256_checksum="945b167e0cc0e690e4566c854924b84f307a0d791fb64762d903472c2c51f692"
|
||||
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.4.7+221019"
|
||||
ARG sha256_checksum="75607c486313da2be4c59aaf2fa00fcf0964374f0e520f2791f011a65fba5f89"
|
||||
ARG version="5.4.9+221101"
|
||||
ARG sha256_checksum="945b167e0cc0e690e4566c854924b84f307a0d791fb64762d903472c2c51f692"
|
||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||
ARG USER=www-data
|
||||
ENV LIMESURVEY_VERSION=$version
|
||||
|
||||
@@ -185,6 +185,15 @@ drwxr-xr-x 3 82 82 4096 Jun 3 13:51 surveys
|
||||
|
||||
If you are using the Apache2 Images, the default port will now be **8080**. Depending on your setup the port configurations might need adjustment.
|
||||
|
||||
# Known Issues
|
||||
|
||||
## LimeSurvey behind a reverse proxy with a subdirectory
|
||||
|
||||
When running LimeSurvey behind a reverse proxy with a subdirectory (i.e. example.com/limesurvey), the admin area might not be displayed correctly due to a routing issue. The application will forward you to the base url regardless. See:
|
||||
- https://github.com/martialblog/docker-limesurvey/issues/49
|
||||
- https://github.com/martialblog/docker-limesurvey/issues/127
|
||||
- https://github.com/martialblog/docker-limesurvey/issues/106
|
||||
|
||||
# References
|
||||
|
||||
- https://www.limesurvey.org/
|
||||
|
||||
Reference in New Issue
Block a user