Compare commits

...

8 Commits

Author SHA1 Message Date
Markus Opolka
7df88e2980 Upgrading to LTS Version 3.24.0+201013 2020-10-14 18:17:06 +02:00
Markus Opolka
8737c5c99c Minor fix in Makefix 2020-10-14 16:11:46 +02:00
Markus Opolka
02f9309f25 Update Makefile 2020-10-14 15:50:28 +02:00
Markus Opolka
ea3a644bfe Update README
- Added details on Tags and Dockerfiles
 - Some markdown improvements
 - Minor spelling fixes
2020-10-14 15:18:19 +02:00
Markus Opolka
f0000f7448 Upgrading to Version 4.3.19+201005 2020-10-13 07:49:59 +02:00
Markus Opolka
6d71e4ecc2 Upgrading to LTS Version 3.23.7+201006 2020-10-13 07:48:55 +02:00
Markus Opolka
2d8e54191d Merge pull request #40 from martialblog/baseurl-param
Add BASE_URL Parameter to work with a Reverse Proxy
2020-10-08 13:03:45 +02:00
Markus Opolka
79047b6ef9 Add BASE_URL Parameter to work with a Reverse Proxy 2020-10-08 12:19:21 +02:00
14 changed files with 84 additions and 33 deletions

View File

@@ -1,7 +1,7 @@
FROM php:7.2-apache FROM php:7.2-apache
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='3.23.6+200929' ARG version='3.24.0+201013'
ARG sha256_checksum='e9887e8defa16f33da9d6580c59ea610cc1db722d4c6cb456e0017429835286e' ARG sha256_checksum='5f38ea92379534fdc8b18161736e04b785115a54d3c373c5af47d6c27b37c75a'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -20,6 +20,7 @@ ADMIN_NAME=${ADMIN_NAME:-'admin'}
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'} ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-} ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
BASE_URL=${BASE_URL:-}
PUBLIC_URL=${PUBLIC_URL:-} PUBLIC_URL=${PUBLIC_URL:-}
URL_FORMAT=${URL_FORMAT:-'path'} URL_FORMAT=${URL_FORMAT:-'path'}
@@ -90,6 +91,9 @@ return array(
'rules' => array(), 'rules' => array(),
'showScriptName' => true, 'showScriptName' => true,
), ),
'request' => array(
'baseUrl' => '$BASE_URL',
),
), ),
'config'=>array( 'config'=>array(
'publicurl'=>'$PUBLIC_URL', 'publicurl'=>'$PUBLIC_URL',

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm-alpine FROM php:7.2-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='3.23.6+200929' ARG version='3.24.0+201013'
ARG sha256_checksum='e9887e8defa16f33da9d6580c59ea610cc1db722d4c6cb456e0017429835286e' ARG sha256_checksum='5f38ea92379534fdc8b18161736e04b785115a54d3c373c5af47d6c27b37c75a'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -20,6 +20,7 @@ ADMIN_NAME=${ADMIN_NAME:-'admin'}
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'} ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-} ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
BASE_URL=${BASE_URL:-}
PUBLIC_URL=${PUBLIC_URL:-} PUBLIC_URL=${PUBLIC_URL:-}
URL_FORMAT=${URL_FORMAT:-'path'} URL_FORMAT=${URL_FORMAT:-'path'}
@@ -90,6 +91,9 @@ return array(
'rules' => array(), 'rules' => array(),
'showScriptName' => true, 'showScriptName' => true,
), ),
'request' => array(
'baseUrl' => '$BASE_URL',
),
), ),
'config'=>array( 'config'=>array(
'publicurl'=>'$PUBLIC_URL', 'publicurl'=>'$PUBLIC_URL',

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm FROM php:7.2-fpm
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='3.23.6+200929' ARG version='3.24.0+201013'
ARG sha256_checksum='e9887e8defa16f33da9d6580c59ea610cc1db722d4c6cb456e0017429835286e' ARG sha256_checksum='5f38ea92379534fdc8b18161736e04b785115a54d3c373c5af47d6c27b37c75a'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -20,6 +20,7 @@ ADMIN_NAME=${ADMIN_NAME:-'admin'}
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'} ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-} ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
BASE_URL=${BASE_URL:-}
PUBLIC_URL=${PUBLIC_URL:-} PUBLIC_URL=${PUBLIC_URL:-}
URL_FORMAT=${URL_FORMAT:-'path'} URL_FORMAT=${URL_FORMAT:-'path'}
@@ -90,6 +91,9 @@ return array(
'rules' => array(), 'rules' => array(),
'showScriptName' => true, 'showScriptName' => true,
), ),
'request' => array(
'baseUrl' => '$BASE_URL',
),
), ),
'config'=>array( 'config'=>array(
'publicurl'=>'$PUBLIC_URL', 'publicurl'=>'$PUBLIC_URL',

View File

@@ -1,7 +1,7 @@
FROM php:7.2-apache FROM php:7.2-apache
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='4.3.18+200928' ARG version='4.3.19+201005'
ARG sha256_checksum='65743dc9fd3577ab88f2270013fc97887699ffba2ef133db533beb6995018314' ARG sha256_checksum='ef9f8c14e818da33de395c1c80572f943e843c9120efc447b4a24a67d62d5682'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -20,6 +20,7 @@ ADMIN_NAME=${ADMIN_NAME:-'admin'}
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'} ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-} ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
BASE_URL=${BASE_URL:-}
PUBLIC_URL=${PUBLIC_URL:-} PUBLIC_URL=${PUBLIC_URL:-}
URL_FORMAT=${URL_FORMAT:-'path'} URL_FORMAT=${URL_FORMAT:-'path'}
@@ -90,6 +91,9 @@ return array(
'rules' => array(), 'rules' => array(),
'showScriptName' => true, 'showScriptName' => true,
), ),
'request' => array(
'baseUrl' => '$BASE_URL',
),
), ),
'config'=>array( 'config'=>array(
'publicurl'=>'$PUBLIC_URL', 'publicurl'=>'$PUBLIC_URL',

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm-alpine FROM php:7.2-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='4.3.18+200928' ARG version='4.3.19+201005'
ARG sha256_checksum='65743dc9fd3577ab88f2270013fc97887699ffba2ef133db533beb6995018314' ARG sha256_checksum='ef9f8c14e818da33de395c1c80572f943e843c9120efc447b4a24a67d62d5682'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -20,6 +20,7 @@ ADMIN_NAME=${ADMIN_NAME:-'admin'}
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'} ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-} ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
BASE_URL=${BASE_URL:-}
PUBLIC_URL=${PUBLIC_URL:-} PUBLIC_URL=${PUBLIC_URL:-}
URL_FORMAT=${URL_FORMAT:-'path'} URL_FORMAT=${URL_FORMAT:-'path'}
@@ -90,6 +91,9 @@ return array(
'rules' => array(), 'rules' => array(),
'showScriptName' => true, 'showScriptName' => true,
), ),
'request' => array(
'baseUrl' => '$BASE_URL',
),
), ),
'config'=>array( 'config'=>array(
'publicurl'=>'$PUBLIC_URL', 'publicurl'=>'$PUBLIC_URL',

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm FROM php:7.2-fpm
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='4.3.18+200928' ARG version='4.3.19+201005'
ARG sha256_checksum='65743dc9fd3577ab88f2270013fc97887699ffba2ef133db533beb6995018314' ARG sha256_checksum='ef9f8c14e818da33de395c1c80572f943e843c9120efc447b4a24a67d62d5682'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -20,6 +20,7 @@ ADMIN_NAME=${ADMIN_NAME:-'admin'}
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'} ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-} ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
BASE_URL=${BASE_URL:-}
PUBLIC_URL=${PUBLIC_URL:-} PUBLIC_URL=${PUBLIC_URL:-}
URL_FORMAT=${URL_FORMAT:-'path'} URL_FORMAT=${URL_FORMAT:-'path'}
@@ -90,6 +91,9 @@ return array(
'rules' => array(), 'rules' => array(),
'showScriptName' => true, 'showScriptName' => true,
), ),
'request' => array(
'baseUrl' => '$BASE_URL',
),
), ),
'config'=>array( 'config'=>array(
'publicurl'=>'$PUBLIC_URL', 'publicurl'=>'$PUBLIC_URL',

View File

@@ -5,23 +5,38 @@
Dockerfile to build a [LimeSurvey](https://limesurvey.org) Image for the Docker container platform. Dockerfile to build a [LimeSurvey](https://limesurvey.org) Image for the Docker container platform.
# Using the apache image ## Quick reference
- **Maintained by:** https://github.com/martialblog/
- **Where to get help:** [GitHub Issues](https://github.com/martialblog/docker-limesurvey/issues)
## Supported tags and respective Dockerfile links
- [`4-apache`, `4.<BUILD-NUMBER>-apache`, `latest` ](https://github.com/martialblog/docker-limesurvey/blob/master/4.0/apache/Dockerfile)
- [`4-fpm`, `4.<BUILD-NUMBER>-fpm`](https://github.com/martialblog/docker-limesurvey/blob/master/4.0/fpm/Dockerfile)
- [`4-fpm-alpine`, `4.<BUILD-NUMBER>-fpm-alpine`](https://github.com/martialblog/docker-limesurvey/blob/master/4.0/fpm-alpine/Dockerfile)
- [`3-apache`, `3.<BUILD-NUMBER>-apache`](https://github.com/martialblog/docker-limesurvey/blob/master/3.0/apache/Dockerfile)
- [`3-fpm`, `3.<BUILD-NUMBER>-fpm`](https://github.com/martialblog/docker-limesurvey/blob/master/3.0/fpm/Dockerfile)
- [`3-fpm-alpine`, `3.<BUILD-NUMBER>-fpm-alpine`](https://github.com/martialblog/docker-limesurvey/blob/master/3.0/fpm-alpine/Dockerfile)
# Using the Apache Image
The apache image comes with an Apache Webserver and PHP installed. The apache image comes with an Apache Webserver and PHP installed.
# Apache Configuration ## Apache Configuration
To change to Apache Webserver configuration, mount a Volume into the Container at: To change to Apache Webserver configuration, mount a Volume into the Container at:
- /etc/apache2/sites-available/000-default.conf - `/etc/apache2/sites-available/000-default.conf`
See the example configuration provided. See the example configuration provided.
# Using the fpm image # Using the fpm Image
To use the fpm image, you need an additional web server that can proxy http-request to the fpm-port of the container. See *docker-compose.fpm.yml* for example. To use the fpm image, you need an additional web server that can proxy http-request to the fpm-port of the container. See *docker-compose.fpm.yml* for example.
# Using the fpm image with https ## Using the fpm Image with HTTPS
If you would like to run the fpm setup with https, you can get a free certificate from Letsencrypt. As an example, the configuration in *docker-compose.fpm-certbot.yml* If you would like to run the fpm setup with https, you can get a free certificate from Letsencrypt. As an example, the configuration in *docker-compose.fpm-certbot.yml*
will take care of getting a certificate and installing it. Please note that you will have to adjust the domain name in the file *examples/nginx-certbot.conf* to match will take care of getting a certificate and installing it. Please note that you will have to adjust the domain name in the file *examples/nginx-certbot.conf* to match
the domain used in the *HOSTNAMES* variable in the docker-compose configuration file. If you added both the a domain and the hostname *www* within the domain, the domain used in the *HOSTNAMES* variable in the docker-compose configuration file. If you added both the a domain and the hostname *www* within the domain,
@@ -36,11 +51,11 @@ LimeSurvey requires an external database (MySQL, PostgreSQL) to run. See *docker
To preserve the uploaded files assign the upload folder into a volume. See *docker-compose.yml* for example. To preserve the uploaded files assign the upload folder into a volume. See *docker-compose.yml* for example.
Path: */var/www/html/upload/surveys* Path: `/var/www/html/upload/surveys`
**Hint**: The mounted directory must be owned by the webserver user (e.g. www-data) **Hint**: The mounted directory must be owned by the webserver user (e.g. www-data)
# LimeSurvey Configuration # LimeSurvey configuration
The entrypoint will create a new config.php if none is provided and run the LimeSurvey command line interface for installation. The entrypoint will create a new config.php if none is provided and run the LimeSurvey command line interface for installation.
@@ -48,20 +63,31 @@ The entrypoint will create a new config.php if none is provided and run the Lime
To change to LimeSurvey configuration, you can mount a Volume into the Container at: To change to LimeSurvey configuration, you can mount a Volume into the Container at:
- /my-data/config.php:/var/www/html/application/config/config.php - `/my-data/config.php:/var/www/html/application/config/config.php`
**Hint**: If this configuration is present before the installation, the LimeSurvey Web Installer will not run automatically. **Hint**: If this configuration is present before the installation, the LimeSurvey Web Installer will not run automatically.
## Data Encryption ## Data encryption
LimeSurvey 4 supports data encryption, this image give you these options: LimeSurvey 4 supports data encryption, this image give you these options:
* Provide a security.php file directly (volume) * Provide a security.php file directly (volume)
* Provide encryption keys for the security.php file (environment variables) * Provide encryption keys for the `security.php` file (environment variables)
* Provide nothing and get a non-persistent security.php file * Provide nothing and get a non-persistent `security.php` file
For further details on the settings see: https://manual.limesurvey.org/Data_encryption For further details on the settings see: https://manual.limesurvey.org/Data_encryption
# Reverse Proxy configuration
## Traefik example
```
# BASE_URL = /limesurvey
"traefik.http.routers.limesurvey.rule=PathPrefix(`/limesurvey`)",
"traefik.http.routers.limesurvey.middlewares=strip-limesurvey@docker",
"traefik.http.middlewares.strip-limesurvey.stripprefix.prefixes=/limesurvey",
```
# Environment Variables # Environment Variables
| Parameter | Description | | Parameter | Description |
@@ -79,6 +105,7 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
| ADMIN_EMAIL | Initial LimeSurvey Admin Email | | ADMIN_EMAIL | Initial LimeSurvey Admin Email |
| ADMIN_PASSWORD | Initial LimeSurvey Admin Password | | ADMIN_PASSWORD | Initial LimeSurvey Admin Password |
| PUBLIC_URL | Public URL for public scripts | | PUBLIC_URL | Public URL for public scripts |
| BASE_URL | Application Base URL |
| URL_FORMAT | URL Format. path or get | | URL_FORMAT | URL Format. path or get |
| DEBUG | Debug level (0, 1, 2). Default: 0 | | DEBUG | Debug level (0, 1, 2). Default: 0 |
| DEBUG_SQL | SQL Debug level (0, 1, 2). Default 0 | | DEBUG_SQL | SQL Debug level (0, 1, 2). Default 0 |
@@ -88,7 +115,7 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
For further details on the settings see: https://manual.limesurvey.org/Optional_settings#Advanced_Path_Settings For further details on the settings see: https://manual.limesurvey.org/Optional_settings#Advanced_Path_Settings
# Running this image with docker-compose # 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](https://github.com/martialblog/docker-limesurvey). The easiest way to get a fully featured and functional setup is using a docker-compose file. Several examples are provided in the [repository](https://github.com/martialblog/docker-limesurvey).

View File

@@ -1,14 +1,14 @@
.PHONY: apache fpm fpm-alpine .PHONY: apache fpm fpm-alpine
apache: apache3:
docker build --pull -t limesurvey:apache 3.0/apache docker build --pull -t martialblog/limesurvey:3-apache 3.0/apache
apache4: apache4:
docker build --pull -t limesurvey:apache 4.0/apache docker build --pull -t martialblog/limesurvey:4-apache 4.0/apache
fpm-alpine: fpm-alpine3:
docker build --pull -t limesurvey:fpm-alpine 3.0/fpm-alpine docker build --pull -t martialblog/limesurvey:3-fpm-alpine 3.0/fpm-alpine
fpm-alpine4: fpm-alpine4:
docker build --pull -t limesurvey:fpm-alpine 4.0/fpm-alpine docker build --pull -t martialblog/limesurvey:4-fpm-alpine 4.0/fpm-alpine
fpm: fpm3:
docker build --pull -t limesurvey:fpm 3.0/fpm docker build --pull -t martialblog/limesurvey:3-fpm 3.0/fpm
fpm4: fpm4:
docker build --pull -t limesurvey:fpm 4.0/fpm docker build --pull -t martialblog/limesurvey:4-fpm 4.0/fpm