mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
Compare commits
59 Commits
3.28.8-220
...
5.4.3-2209
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d4d89859c1 | ||
|
|
eef6c84c91 | ||
|
|
3117108a47 | ||
|
|
ce612a0bb9 | ||
|
|
f094489674 | ||
|
|
12a8ba2660 | ||
|
|
f3e7c1451a | ||
|
|
66b2708e41 | ||
|
|
5ba0746db1 | ||
|
|
38ba19ffec | ||
|
|
8d54793bf6 | ||
|
|
f8122f286c | ||
|
|
93c5bff4d4 | ||
|
|
b76bc10938 | ||
|
|
db81ee1d42 | ||
|
|
dbb996270d | ||
|
|
b1a85992d7 | ||
|
|
c3f547aa3c | ||
|
|
24ed34bc01 | ||
|
|
77ba4fe5e7 | ||
|
|
4077b9d0c8 | ||
|
|
0ce040715c | ||
|
|
d4072def38 | ||
|
|
8cd721ab4b | ||
|
|
76ccb812a4 | ||
|
|
289e07597c | ||
|
|
10b4f482ff | ||
|
|
89829181a7 | ||
|
|
0fa7cc0c28 | ||
|
|
da15d218b4 | ||
|
|
fe85d3caed | ||
|
|
3ae6ad9a4d | ||
|
|
84bef42be8 | ||
|
|
d586d00f65 | ||
|
|
1f1dc5988c | ||
|
|
d1589be66e | ||
|
|
d70f6e96a2 | ||
|
|
ab4999ce35 | ||
|
|
316121af13 | ||
|
|
34416fb250 | ||
|
|
e640684875 | ||
|
|
e8595fbbed | ||
|
|
a107e3a14f | ||
|
|
69a0febd53 | ||
|
|
2a8c53273e | ||
|
|
882cc50e81 | ||
|
|
1d3081acd7 | ||
|
|
0d13763a47 | ||
|
|
7ee31a96ec | ||
|
|
f5da02dd55 | ||
|
|
952a15d298 | ||
|
|
ce31f52f54 | ||
|
|
4d22afc2f3 | ||
|
|
2dff0b1c02 | ||
|
|
d817d2c56d | ||
|
|
26291e176b | ||
|
|
b00c7b146a | ||
|
|
a45bcd926d | ||
|
|
c1c16c5395 |
@@ -1,9 +1,5 @@
|
|||||||
FROM php:8.0-apache
|
FROM docker.io/php:8.0-apache
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='3.28.8+220426'
|
|
||||||
ARG sha256_checksum='9cfe5106b1ef59e243266d89765740b3fb66d452bc6cfc0e6f3926f9ce10c4a0'
|
|
||||||
ARG USER=root
|
|
||||||
ARG LISTEN_PORT=80
|
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -50,8 +46,6 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ENV LIMESURVEY_VERSION=$version
|
|
||||||
|
|
||||||
# Apache configuration
|
# Apache configuration
|
||||||
RUN a2enmod headers rewrite remoteip; \
|
RUN a2enmod headers rewrite remoteip; \
|
||||||
{\
|
{\
|
||||||
@@ -65,9 +59,16 @@ RUN a2enmod headers rewrite remoteip; \
|
|||||||
# Use the default production configuration
|
# Use the default production configuration
|
||||||
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
ARG version="3.28.30+220927"
|
||||||
|
ARG sha256_checksum="b4a877384644abb274b6f0700c65b4ec48625c388756d4eff9ba445d081fbc51"
|
||||||
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
|
ARG USER=root
|
||||||
|
ARG LISTEN_PORT=80
|
||||||
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
|
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
||||||
\
|
\
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
FROM php:8.0-fpm-alpine
|
FROM docker.io/php:8.0-fpm-alpine
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='3.28.8+220426'
|
|
||||||
ARG sha256_checksum='9cfe5106b1ef59e243266d89765740b3fb66d452bc6cfc0e6f3926f9ce10c4a0'
|
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -35,9 +33,14 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
ARG version="3.28.30+220927"
|
||||||
|
ARG sha256_checksum="b4a877384644abb274b6f0700c65b4ec48625c388756d4eff9ba445d081fbc51"
|
||||||
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
|
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
||||||
\
|
\
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
FROM php:8.0-fpm
|
FROM docker.io/php:8.0-fpm
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='3.28.8+220426'
|
|
||||||
ARG sha256_checksum='9cfe5106b1ef59e243266d89765740b3fb66d452bc6cfc0e6f3926f9ce10c4a0'
|
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -48,11 +46,14 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
|
ARG version="3.28.30+220927"
|
||||||
|
ARG sha256_checksum="b4a877384644abb274b6f0700c65b4ec48625c388756d4eff9ba445d081fbc51"
|
||||||
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
||||||
\
|
\
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
||||||
|
|||||||
@@ -1,82 +0,0 @@
|
|||||||
FROM php:8.0-apache
|
|
||||||
LABEL maintainer="markus@martialblog.de"
|
|
||||||
ARG version='4.6.3+210518'
|
|
||||||
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
|
||||||
ARG USER=root
|
|
||||||
ARG LISTEN_PORT=80
|
|
||||||
|
|
||||||
# Install OS dependencies
|
|
||||||
RUN set -ex; \
|
|
||||||
apt-get update && \
|
|
||||||
DEBIAN_FRONTEND=noninteractive \
|
|
||||||
apt-get install --no-install-recommends -y \
|
|
||||||
\
|
|
||||||
libldap2-dev \
|
|
||||||
libfreetype6-dev \
|
|
||||||
libjpeg-dev \
|
|
||||||
libonig-dev \
|
|
||||||
zlib1g-dev \
|
|
||||||
libc-client-dev \
|
|
||||||
libkrb5-dev \
|
|
||||||
libpng-dev \
|
|
||||||
libpq-dev \
|
|
||||||
libzip-dev \
|
|
||||||
libtidy-dev \
|
|
||||||
libsodium-dev \
|
|
||||||
netcat \
|
|
||||||
curl \
|
|
||||||
\
|
|
||||||
&& apt-get -y autoclean; apt-get -y autoremove; \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Link LDAP library for PHP ldap extension
|
|
||||||
RUN set -ex; \
|
|
||||||
ln -fs /usr/lib/x86_64-linux-gnu/libldap.so /usr/lib/
|
|
||||||
|
|
||||||
# Install PHP Plugins and Configure PHP imap plugin
|
|
||||||
RUN set -ex; \
|
|
||||||
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr && \
|
|
||||||
docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \
|
|
||||||
docker-php-ext-install -j5 \
|
|
||||||
exif \
|
|
||||||
gd \
|
|
||||||
imap \
|
|
||||||
ldap \
|
|
||||||
mbstring \
|
|
||||||
pdo \
|
|
||||||
pdo_mysql \
|
|
||||||
pdo_pgsql \
|
|
||||||
pgsql \
|
|
||||||
sodium \
|
|
||||||
tidy \
|
|
||||||
zip
|
|
||||||
|
|
||||||
ENV LIMESURVEY_VERSION=$version
|
|
||||||
|
|
||||||
# Apache configuration
|
|
||||||
RUN a2enmod headers rewrite remoteip; \
|
|
||||||
{\
|
|
||||||
echo RemoteIPHeader X-Real-IP ;\
|
|
||||||
echo RemoteIPTrustedProxy 10.0.0.0/8 ;\
|
|
||||||
echo RemoteIPTrustedProxy 172.16.0.0/12 ;\
|
|
||||||
echo RemoteIPTrustedProxy 192.168.0.0/16 ;\
|
|
||||||
} > /etc/apache2/conf-available/remoteip.conf;\
|
|
||||||
a2enconf remoteip
|
|
||||||
|
|
||||||
# Use the default production configuration
|
|
||||||
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
|
||||||
RUN set -ex; \
|
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
|
||||||
\
|
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
|
||||||
rm -f "/tmp/limesurvey.tar.gz" && \
|
|
||||||
chown -R www-data:www-data /var/www/html /etc/apache2
|
|
||||||
|
|
||||||
WORKDIR /var/www/html
|
|
||||||
COPY entrypoint.sh entrypoint.sh
|
|
||||||
USER $USER
|
|
||||||
ENTRYPOINT ["/var/www/html/entrypoint.sh"]
|
|
||||||
CMD ["apache2-foreground"]
|
|
||||||
@@ -1,154 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Entrypoint for Docker Container
|
|
||||||
|
|
||||||
|
|
||||||
DB_TYPE=${DB_TYPE:-'mysql'}
|
|
||||||
DB_HOST=${DB_HOST:-'mysql'}
|
|
||||||
DB_PORT=${DB_PORT:-'3306'}
|
|
||||||
DB_SOCK=${DB_SOCK:-}
|
|
||||||
DB_NAME=${DB_NAME:-'limesurvey'}
|
|
||||||
DB_TABLE_PREFIX=${DB_TABLE_PREFIX:-'lime_'}
|
|
||||||
DB_USERNAME=${DB_USERNAME:-'limesurvey'}
|
|
||||||
DB_PASSWORD=${DB_PASSWORD:-}
|
|
||||||
DB_MYSQL_ENGINE=${DB_MYSQL_ENGINE:-'MyISAM'}
|
|
||||||
|
|
||||||
ENCRYPT_KEYPAIR=${ENCRYPT_KEYPAIR:-}
|
|
||||||
ENCRYPT_PUBLIC_KEY=${ENCRYPT_PUBLIC_KEY:-}
|
|
||||||
ENCRYPT_SECRET_KEY=${ENCRYPT_SECRET_KEY:-}
|
|
||||||
|
|
||||||
ADMIN_USER=${ADMIN_USER:-'admin'}
|
|
||||||
ADMIN_NAME=${ADMIN_NAME:-'admin'}
|
|
||||||
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
|
|
||||||
ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
|
|
||||||
|
|
||||||
BASE_URL=${BASE_URL:-}
|
|
||||||
PUBLIC_URL=${PUBLIC_URL:-}
|
|
||||||
URL_FORMAT=${URL_FORMAT:-'path'}
|
|
||||||
|
|
||||||
DEBUG=${DEBUG:-0}
|
|
||||||
DEBUG_SQL=${DEBUG_SQL:-0}
|
|
||||||
|
|
||||||
LISTEN_PORT=${LISTEN_PORT:-"80"}
|
|
||||||
|
|
||||||
if [ -z "$DB_PASSWORD" ]; then
|
|
||||||
echo >&2 'Error: Missing DB_PASSWORD'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$ADMIN_PASSWORD" ]; then
|
|
||||||
echo >&2 'Error: Missing ADMIN_PASSWORD'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$LISTEN_PORT" != "80" ]; then
|
|
||||||
echo "Info: Customizing Apache Listen port to $LISTEN_PORT"
|
|
||||||
sed -i "s/Listen 80\$/Listen $LISTEN_PORT/" /etc/apache2/ports.conf /etc/apache2/sites-available/000-default.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if database is available
|
|
||||||
if [ -z "$DB_SOCK" ]; then
|
|
||||||
until nc -z -v -w30 "$DB_HOST" "$DB_PORT"
|
|
||||||
do
|
|
||||||
echo "Info: Waiting for database connection..."
|
|
||||||
sleep 5
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if config already provisioned
|
|
||||||
if [ -f application/config/config.php ]; then
|
|
||||||
echo 'Info: config.php already provisioned'
|
|
||||||
else
|
|
||||||
echo 'Info: Generating config.php'
|
|
||||||
|
|
||||||
if [ "$DB_TYPE" = 'mysql' ]; then
|
|
||||||
echo 'Info: Using MySQL configuration'
|
|
||||||
DB_CHARSET=${DB_CHARSET:-'utf8mb4'}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$DB_TYPE" = 'pgsql' ]; then
|
|
||||||
echo 'Info: Using PostgreSQL configuration'
|
|
||||||
DB_CHARSET=${DB_CHARSET:-'utf8'}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$DB_SOCK" ]; then
|
|
||||||
echo 'Info: Using unix socket'
|
|
||||||
DB_CONNECT='unix_socket'
|
|
||||||
else
|
|
||||||
echo 'Info: Using TCP connection'
|
|
||||||
DB_CONNECT='host'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$PUBLIC_URL" ]; then
|
|
||||||
echo 'Info: Setting PublicURL'
|
|
||||||
fi
|
|
||||||
|
|
||||||
cat <<EOF > application/config/config.php
|
|
||||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
||||||
return array(
|
|
||||||
'components' => array(
|
|
||||||
'db' => array(
|
|
||||||
'connectionString' => '$DB_TYPE:$DB_CONNECT=$DB_HOST;port=$DB_PORT;dbname=$DB_NAME;',
|
|
||||||
'emulatePrepare' => true,
|
|
||||||
'username' => '$DB_USERNAME',
|
|
||||||
'password' => '$DB_PASSWORD',
|
|
||||||
'charset' => '$DB_CHARSET',
|
|
||||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
|
||||||
),
|
|
||||||
'urlManager' => array(
|
|
||||||
'urlFormat' => '$URL_FORMAT',
|
|
||||||
'rules' => array(),
|
|
||||||
'showScriptName' => true,
|
|
||||||
),
|
|
||||||
'request' => array(
|
|
||||||
'baseUrl' => '$BASE_URL',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
'config'=>array(
|
|
||||||
'publicurl'=>'$PUBLIC_URL',
|
|
||||||
'debug'=>$DEBUG,
|
|
||||||
'debugsql'=>$DEBUG_SQL,
|
|
||||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if security config already provisioned
|
|
||||||
if [ -f application/config/security.php ]; then
|
|
||||||
echo 'Info: security.php already provisioned'
|
|
||||||
else
|
|
||||||
echo 'Info: Creating security.php'
|
|
||||||
if [ -n "$ENCRYPT_KEYPAIR" ]; then
|
|
||||||
|
|
||||||
cat <<EOF > application/config/security.php
|
|
||||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
||||||
\$config = array();
|
|
||||||
\$config['encryptionkeypair'] = '$ENCRYPT_KEYPAIR';
|
|
||||||
\$config['encryptionpublickey'] = '$ENCRYPT_PUBLIC_KEY';
|
|
||||||
\$config['encryptionsecretkey'] = '$ENCRYPT_SECRET_KEY';
|
|
||||||
return \$config;
|
|
||||||
EOF
|
|
||||||
else
|
|
||||||
echo >&2 'Warning: No encryption keys were provided'
|
|
||||||
echo >&2 'Warning: A security.php config will be created by the application'
|
|
||||||
echo >&2 'Warning: THIS FILE NEEDS TO BE PERSISTENT'
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if LimeSurvey database is provisioned
|
|
||||||
echo 'Info: Check if database already provisioned. Nevermind the Stack trace.'
|
|
||||||
php application/commands/console.php updatedb
|
|
||||||
|
|
||||||
PHP_UPDATEDB_EXIT_CODE=$?
|
|
||||||
|
|
||||||
if [ $PHP_UPDATEDB_EXIT_CODE -eq 0 ]; then
|
|
||||||
echo 'Info: Database already provisioned'
|
|
||||||
else
|
|
||||||
echo ''
|
|
||||||
echo 'Running console.php install'
|
|
||||||
php application/commands/console.php install "$ADMIN_USER" "$ADMIN_PASSWORD" "$ADMIN_NAME" "$ADMIN_EMAIL"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec "$@"
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
FROM php:8.0-fpm-alpine
|
|
||||||
LABEL maintainer="markus@martialblog.de"
|
|
||||||
ARG version='4.6.3+210518'
|
|
||||||
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
|
||||||
|
|
||||||
# Install OS dependencies
|
|
||||||
RUN set -ex; \
|
|
||||||
apk add --no-cache --virtual .build-deps \
|
|
||||||
freetype-dev \
|
|
||||||
libpng-dev \
|
|
||||||
libzip-dev \
|
|
||||||
libjpeg-turbo-dev \
|
|
||||||
tidyhtml-dev \
|
|
||||||
libsodium-dev \
|
|
||||||
openldap-dev \
|
|
||||||
oniguruma-dev \
|
|
||||||
imap-dev \
|
|
||||||
postgresql-dev && \
|
|
||||||
apk add --no-cache netcat-openbsd bash
|
|
||||||
|
|
||||||
# Install PHP Plugins
|
|
||||||
RUN set -ex; \
|
|
||||||
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr && \
|
|
||||||
docker-php-ext-configure imap --with-imap-ssl && \
|
|
||||||
docker-php-ext-install \
|
|
||||||
exif \
|
|
||||||
gd \
|
|
||||||
imap \
|
|
||||||
ldap \
|
|
||||||
mbstring \
|
|
||||||
pdo \
|
|
||||||
pdo_mysql \
|
|
||||||
pdo_pgsql \
|
|
||||||
pgsql \
|
|
||||||
sodium \
|
|
||||||
tidy \
|
|
||||||
zip
|
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
|
||||||
RUN set -ex; \
|
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
|
||||||
\
|
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
|
||||||
\
|
|
||||||
rm -rf "/tmp/limesurvey.tar.gz" \
|
|
||||||
/var/www/html/docs \
|
|
||||||
/var/www/html/tests \
|
|
||||||
/var/www/html/*.md && \
|
|
||||||
chown -R www-data:root /var/www/ ; \
|
|
||||||
chmod -R g=u /var/www
|
|
||||||
|
|
||||||
EXPOSE 9000
|
|
||||||
|
|
||||||
WORKDIR /var/www/html
|
|
||||||
COPY entrypoint.sh entrypoint.sh
|
|
||||||
ENTRYPOINT ["/var/www/html/entrypoint.sh"]
|
|
||||||
CMD ["php-fpm"]
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Entrypoint for Docker Container
|
|
||||||
|
|
||||||
|
|
||||||
DB_TYPE=${DB_TYPE:-'mysql'}
|
|
||||||
DB_HOST=${DB_HOST:-'mysql'}
|
|
||||||
DB_PORT=${DB_PORT:-'3306'}
|
|
||||||
DB_SOCK=${DB_SOCK:-}
|
|
||||||
DB_NAME=${DB_NAME:-'limesurvey'}
|
|
||||||
DB_TABLE_PREFIX=${DB_TABLE_PREFIX:-'lime_'}
|
|
||||||
DB_USERNAME=${DB_USERNAME:-'limesurvey'}
|
|
||||||
DB_PASSWORD=${DB_PASSWORD:-}
|
|
||||||
DB_MYSQL_ENGINE=${DB_MYSQL_ENGINE:-'MyISAM'}
|
|
||||||
|
|
||||||
ENCRYPT_KEYPAIR=${ENCRYPT_KEYPAIR:-}
|
|
||||||
ENCRYPT_PUBLIC_KEY=${ENCRYPT_PUBLIC_KEY:-}
|
|
||||||
ENCRYPT_SECRET_KEY=${ENCRYPT_SECRET_KEY:-}
|
|
||||||
|
|
||||||
ADMIN_USER=${ADMIN_USER:-'admin'}
|
|
||||||
ADMIN_NAME=${ADMIN_NAME:-'admin'}
|
|
||||||
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
|
|
||||||
ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
|
|
||||||
|
|
||||||
BASE_URL=${BASE_URL:-}
|
|
||||||
PUBLIC_URL=${PUBLIC_URL:-}
|
|
||||||
URL_FORMAT=${URL_FORMAT:-'path'}
|
|
||||||
|
|
||||||
DEBUG=${DEBUG:-0}
|
|
||||||
DEBUG_SQL=${DEBUG_SQL:-0}
|
|
||||||
|
|
||||||
if [ -z "$DB_PASSWORD" ]; then
|
|
||||||
echo >&2 'Error: Missing DB_PASSWORD'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$ADMIN_PASSWORD" ]; then
|
|
||||||
echo >&2 'Error: Missing ADMIN_PASSWORD'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if database is available
|
|
||||||
if [ -z "$DB_SOCK" ]; then
|
|
||||||
until nc -z -v -w30 "$DB_HOST" "$DB_PORT"
|
|
||||||
do
|
|
||||||
echo "Info: Waiting for database connection..."
|
|
||||||
sleep 5
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if config already provisioned
|
|
||||||
if [ -f application/config/config.php ]; then
|
|
||||||
echo 'Info: config.php already provisioned'
|
|
||||||
else
|
|
||||||
echo 'Info: Generating config.php'
|
|
||||||
|
|
||||||
if [ "$DB_TYPE" = 'mysql' ]; then
|
|
||||||
echo 'Info: Using MySQL configuration'
|
|
||||||
DB_CHARSET=${DB_CHARSET:-'utf8mb4'}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$DB_TYPE" = 'pgsql' ]; then
|
|
||||||
echo 'Info: Using PostgreSQL configuration'
|
|
||||||
DB_CHARSET=${DB_CHARSET:-'utf8'}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$DB_SOCK" ]; then
|
|
||||||
echo 'Info: Using unix socket'
|
|
||||||
DB_CONNECT='unix_socket'
|
|
||||||
else
|
|
||||||
echo 'Info: Using TCP connection'
|
|
||||||
DB_CONNECT='host'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$PUBLIC_URL" ]; then
|
|
||||||
echo 'Info: Setting PublicURL'
|
|
||||||
fi
|
|
||||||
|
|
||||||
cat <<EOF > application/config/config.php
|
|
||||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
||||||
return array(
|
|
||||||
'components' => array(
|
|
||||||
'db' => array(
|
|
||||||
'connectionString' => '$DB_TYPE:$DB_CONNECT=$DB_HOST;port=$DB_PORT;dbname=$DB_NAME;',
|
|
||||||
'emulatePrepare' => true,
|
|
||||||
'username' => '$DB_USERNAME',
|
|
||||||
'password' => '$DB_PASSWORD',
|
|
||||||
'charset' => '$DB_CHARSET',
|
|
||||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
|
||||||
),
|
|
||||||
'urlManager' => array(
|
|
||||||
'urlFormat' => '$URL_FORMAT',
|
|
||||||
'rules' => array(),
|
|
||||||
'showScriptName' => true,
|
|
||||||
),
|
|
||||||
'request' => array(
|
|
||||||
'baseUrl' => '$BASE_URL',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
'config'=>array(
|
|
||||||
'publicurl'=>'$PUBLIC_URL',
|
|
||||||
'debug'=>$DEBUG,
|
|
||||||
'debugsql'=>$DEBUG_SQL,
|
|
||||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if security config already provisioned
|
|
||||||
if [ -f application/config/security.php ]; then
|
|
||||||
echo 'Info: security.php already provisioned'
|
|
||||||
else
|
|
||||||
echo 'Info: Creating security.php'
|
|
||||||
if [ -n "$ENCRYPT_KEYPAIR" ]; then
|
|
||||||
|
|
||||||
cat <<EOF > application/config/security.php
|
|
||||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
||||||
\$config = array();
|
|
||||||
\$config['encryptionkeypair'] = '$ENCRYPT_KEYPAIR';
|
|
||||||
\$config['encryptionpublickey'] = '$ENCRYPT_PUBLIC_KEY';
|
|
||||||
\$config['encryptionsecretkey'] = '$ENCRYPT_SECRET_KEY';
|
|
||||||
return \$config;
|
|
||||||
EOF
|
|
||||||
else
|
|
||||||
echo >&2 'Warning: No encryption keys were provided'
|
|
||||||
echo >&2 'Warning: A security.php config will be created by the application'
|
|
||||||
echo >&2 'Warning: THIS FILE NEEDS TO BE PERSISTENT'
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if LimeSurvey database is provisioned
|
|
||||||
echo 'Info: Check if database already provisioned. Nevermind the Stack trace.'
|
|
||||||
php application/commands/console.php updatedb
|
|
||||||
|
|
||||||
PHP_UPDATEDB_EXIT_CODE=$?
|
|
||||||
|
|
||||||
if [ $PHP_UPDATEDB_EXIT_CODE -eq 0 ]; then
|
|
||||||
echo 'Info: Database already provisioned'
|
|
||||||
else
|
|
||||||
echo ''
|
|
||||||
echo 'Running console.php install'
|
|
||||||
php application/commands/console.php install "$ADMIN_USER" "$ADMIN_PASSWORD" "$ADMIN_NAME" "$ADMIN_EMAIL"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec "$@"
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
FROM php:8.0-fpm
|
|
||||||
LABEL maintainer="markus@martialblog.de"
|
|
||||||
ARG version='4.6.3+210518'
|
|
||||||
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
|
||||||
|
|
||||||
# Install OS dependencies
|
|
||||||
RUN set -ex; \
|
|
||||||
apt-get update && \
|
|
||||||
DEBIAN_FRONTEND=noninteractive \
|
|
||||||
apt-get install --no-install-recommends -y \
|
|
||||||
\
|
|
||||||
libldap2-dev \
|
|
||||||
libfreetype6-dev \
|
|
||||||
libjpeg-dev \
|
|
||||||
libonig-dev \
|
|
||||||
zlib1g-dev \
|
|
||||||
libc-client-dev \
|
|
||||||
libkrb5-dev \
|
|
||||||
libpng-dev \
|
|
||||||
libpq-dev \
|
|
||||||
libzip-dev \
|
|
||||||
libtidy-dev \
|
|
||||||
libsodium-dev \
|
|
||||||
netcat \
|
|
||||||
\
|
|
||||||
&& apt-get -y autoclean; apt-get -y autoremove; \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Link LDAP library for PHP ldap extension
|
|
||||||
RUN set -ex; \
|
|
||||||
ln -fs /usr/lib/x86_64-linux-gnu/libldap.so /usr/lib/
|
|
||||||
|
|
||||||
# Install PHP Plugins and Configure PHP imap plugin
|
|
||||||
RUN set -ex; \
|
|
||||||
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr && \
|
|
||||||
docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \
|
|
||||||
docker-php-ext-install -j5 \
|
|
||||||
exif \
|
|
||||||
gd \
|
|
||||||
imap \
|
|
||||||
ldap \
|
|
||||||
mbstring \
|
|
||||||
pdo \
|
|
||||||
pdo_mysql \
|
|
||||||
pdo_pgsql \
|
|
||||||
pgsql \
|
|
||||||
sodium \
|
|
||||||
tidy \
|
|
||||||
zip
|
|
||||||
|
|
||||||
ENV LIMESURVEY_VERSION=$version
|
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
|
||||||
RUN set -ex; \
|
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
|
||||||
\
|
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
|
||||||
rm -f "/tmp/limesurvey.tar.gz" && \
|
|
||||||
chown -R www-data:www-data /var/www/html
|
|
||||||
|
|
||||||
EXPOSE 9000
|
|
||||||
|
|
||||||
WORKDIR /var/www/html
|
|
||||||
COPY entrypoint.sh entrypoint.sh
|
|
||||||
ENTRYPOINT ["/var/www/html/entrypoint.sh"]
|
|
||||||
CMD ["php-fpm"]
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Entrypoint for Docker Container
|
|
||||||
|
|
||||||
|
|
||||||
DB_TYPE=${DB_TYPE:-'mysql'}
|
|
||||||
DB_HOST=${DB_HOST:-'mysql'}
|
|
||||||
DB_PORT=${DB_PORT:-'3306'}
|
|
||||||
DB_SOCK=${DB_SOCK:-}
|
|
||||||
DB_NAME=${DB_NAME:-'limesurvey'}
|
|
||||||
DB_TABLE_PREFIX=${DB_TABLE_PREFIX:-'lime_'}
|
|
||||||
DB_USERNAME=${DB_USERNAME:-'limesurvey'}
|
|
||||||
DB_PASSWORD=${DB_PASSWORD:-}
|
|
||||||
DB_MYSQL_ENGINE=${DB_MYSQL_ENGINE:-'MyISAM'}
|
|
||||||
|
|
||||||
ENCRYPT_KEYPAIR=${ENCRYPT_KEYPAIR:-}
|
|
||||||
ENCRYPT_PUBLIC_KEY=${ENCRYPT_PUBLIC_KEY:-}
|
|
||||||
ENCRYPT_SECRET_KEY=${ENCRYPT_SECRET_KEY:-}
|
|
||||||
|
|
||||||
ADMIN_USER=${ADMIN_USER:-'admin'}
|
|
||||||
ADMIN_NAME=${ADMIN_NAME:-'admin'}
|
|
||||||
ADMIN_EMAIL=${ADMIN_EMAIL:-'foobar@example.com'}
|
|
||||||
ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
|
|
||||||
|
|
||||||
BASE_URL=${BASE_URL:-}
|
|
||||||
PUBLIC_URL=${PUBLIC_URL:-}
|
|
||||||
URL_FORMAT=${URL_FORMAT:-'path'}
|
|
||||||
|
|
||||||
DEBUG=${DEBUG:-0}
|
|
||||||
DEBUG_SQL=${DEBUG_SQL:-0}
|
|
||||||
|
|
||||||
if [ -z "$DB_PASSWORD" ]; then
|
|
||||||
echo >&2 'Error: Missing DB_PASSWORD'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$ADMIN_PASSWORD" ]; then
|
|
||||||
echo >&2 'Error: Missing ADMIN_PASSWORD'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if database is available
|
|
||||||
if [ -z "$DB_SOCK" ]; then
|
|
||||||
until nc -z -v -w30 "$DB_HOST" "$DB_PORT"
|
|
||||||
do
|
|
||||||
echo "Info: Waiting for database connection..."
|
|
||||||
sleep 5
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if config already provisioned
|
|
||||||
if [ -f application/config/config.php ]; then
|
|
||||||
echo 'Info: config.php already provisioned'
|
|
||||||
else
|
|
||||||
echo 'Info: Generating config.php'
|
|
||||||
|
|
||||||
if [ "$DB_TYPE" = 'mysql' ]; then
|
|
||||||
echo 'Info: Using MySQL configuration'
|
|
||||||
DB_CHARSET=${DB_CHARSET:-'utf8mb4'}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$DB_TYPE" = 'pgsql' ]; then
|
|
||||||
echo 'Info: Using PostgreSQL configuration'
|
|
||||||
DB_CHARSET=${DB_CHARSET:-'utf8'}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$DB_SOCK" ]; then
|
|
||||||
echo 'Info: Using unix socket'
|
|
||||||
DB_CONNECT='unix_socket'
|
|
||||||
else
|
|
||||||
echo 'Info: Using TCP connection'
|
|
||||||
DB_CONNECT='host'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$PUBLIC_URL" ]; then
|
|
||||||
echo 'Info: Setting PublicURL'
|
|
||||||
fi
|
|
||||||
|
|
||||||
cat <<EOF > application/config/config.php
|
|
||||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
||||||
return array(
|
|
||||||
'components' => array(
|
|
||||||
'db' => array(
|
|
||||||
'connectionString' => '$DB_TYPE:$DB_CONNECT=$DB_HOST;port=$DB_PORT;dbname=$DB_NAME;',
|
|
||||||
'emulatePrepare' => true,
|
|
||||||
'username' => '$DB_USERNAME',
|
|
||||||
'password' => '$DB_PASSWORD',
|
|
||||||
'charset' => '$DB_CHARSET',
|
|
||||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
|
||||||
),
|
|
||||||
'urlManager' => array(
|
|
||||||
'urlFormat' => '$URL_FORMAT',
|
|
||||||
'rules' => array(),
|
|
||||||
'showScriptName' => true,
|
|
||||||
),
|
|
||||||
'request' => array(
|
|
||||||
'baseUrl' => '$BASE_URL',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
'config'=>array(
|
|
||||||
'publicurl'=>'$PUBLIC_URL',
|
|
||||||
'debug'=>$DEBUG,
|
|
||||||
'debugsql'=>$DEBUG_SQL,
|
|
||||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if security config already provisioned
|
|
||||||
if [ -f application/config/security.php ]; then
|
|
||||||
echo 'Info: security.php already provisioned'
|
|
||||||
else
|
|
||||||
echo 'Info: Creating security.php'
|
|
||||||
if [ -n "$ENCRYPT_KEYPAIR" ]; then
|
|
||||||
|
|
||||||
cat <<EOF > application/config/security.php
|
|
||||||
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
||||||
\$config = array();
|
|
||||||
\$config['encryptionkeypair'] = '$ENCRYPT_KEYPAIR';
|
|
||||||
\$config['encryptionpublickey'] = '$ENCRYPT_PUBLIC_KEY';
|
|
||||||
\$config['encryptionsecretkey'] = '$ENCRYPT_SECRET_KEY';
|
|
||||||
return \$config;
|
|
||||||
EOF
|
|
||||||
else
|
|
||||||
echo >&2 'Warning: No encryption keys were provided'
|
|
||||||
echo >&2 'Warning: A security.php config will be created by the application'
|
|
||||||
echo >&2 'Warning: THIS FILE NEEDS TO BE PERSISTENT'
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if LimeSurvey database is provisioned
|
|
||||||
echo 'Info: Check if database already provisioned. Nevermind the Stack trace.'
|
|
||||||
php application/commands/console.php updatedb
|
|
||||||
|
|
||||||
PHP_UPDATEDB_EXIT_CODE=$?
|
|
||||||
|
|
||||||
if [ $PHP_UPDATEDB_EXIT_CODE -eq 0 ]; then
|
|
||||||
echo 'Info: Database already provisioned'
|
|
||||||
else
|
|
||||||
echo ''
|
|
||||||
echo 'Running console.php install'
|
|
||||||
php application/commands/console.php install "$ADMIN_USER" "$ADMIN_PASSWORD" "$ADMIN_NAME" "$ADMIN_EMAIL"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec "$@"
|
|
||||||
@@ -1,9 +1,5 @@
|
|||||||
FROM php:8.0-apache
|
FROM docker.io/php:8.0-apache
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='5.3.10+220419'
|
|
||||||
ARG sha256_checksum='da475e2e97c62fd203ced9c501b023ff2155c602d3948d79180dc25502abbd1a'
|
|
||||||
ARG USER=www-data
|
|
||||||
ARG LISTEN_PORT=8080
|
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -51,8 +47,6 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ENV LIMESURVEY_VERSION=$version
|
|
||||||
|
|
||||||
# Apache configuration
|
# Apache configuration
|
||||||
RUN a2enmod headers rewrite remoteip; \
|
RUN a2enmod headers rewrite remoteip; \
|
||||||
{\
|
{\
|
||||||
@@ -66,9 +60,16 @@ RUN a2enmod headers rewrite remoteip; \
|
|||||||
# Use the default production configuration
|
# Use the default production configuration
|
||||||
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
ARG version="5.4.3+220926"
|
||||||
|
ARG sha256_checksum="881629eb8ebacd4dab6b5f3b27178467b837ed71b3c63d7654f9d53b13585134"
|
||||||
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
|
ARG USER=www-data
|
||||||
|
ARG LISTEN_PORT=8080
|
||||||
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
|
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
||||||
\
|
\
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
FROM php:8.0-fpm-alpine
|
FROM docker.io/php:8.0-fpm-alpine
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='5.3.10+220419'
|
|
||||||
ARG sha256_checksum='da475e2e97c62fd203ced9c501b023ff2155c602d3948d79180dc25502abbd1a'
|
|
||||||
ARG USER=www-data
|
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -37,9 +34,15 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
ARG version="5.4.3+220926"
|
||||||
|
ARG sha256_checksum="881629eb8ebacd4dab6b5f3b27178467b837ed71b3c63d7654f9d53b13585134"
|
||||||
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
|
ARG USER=www-data
|
||||||
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
|
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
||||||
\
|
\
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
FROM php:8.0-fpm
|
FROM docker.io/php:8.0-fpm
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='5.3.10+220419'
|
|
||||||
ARG sha256_checksum='da475e2e97c62fd203ced9c501b023ff2155c602d3948d79180dc25502abbd1a'
|
|
||||||
ARG USER=www-data
|
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -49,11 +46,15 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
|
ARG version="5.4.3+220926"
|
||||||
|
ARG sha256_checksum="881629eb8ebacd4dab6b5f3b27178467b837ed71b3c63d7654f9d53b13585134"
|
||||||
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
|
ARG USER=www-data
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
# Download, unzip and chmod LimeSurvey from official GitHub repository
|
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
curl -sSL "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" --output /tmp/limesurvey.tar.gz && \
|
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \
|
||||||
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
echo "${sha256_checksum} /tmp/limesurvey.tar.gz" | sha256sum -c - && \
|
||||||
\
|
\
|
||||||
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
tar xzvf "/tmp/limesurvey.tar.gz" --strip-components=1 -C /var/www/html/ && \
|
||||||
|
|||||||
@@ -2,6 +2,15 @@
|
|||||||
|
|
||||||
Every Pull Request is welcome.
|
Every Pull Request is welcome.
|
||||||
|
|
||||||
|
## Branches
|
||||||
|
Choosing a proper name for a branch helps us identify its purpose and possibly find an associated bug or feature. Generally a branch name should include a topic such as `fix` or `feature` followed by a description. Branches should have only changes relevant to a specific issue.
|
||||||
|
|
||||||
|
```
|
||||||
|
git checkout -b fix/bug-in-connection
|
||||||
|
git checkout -b feature/improved-config-handling
|
||||||
|
git checkout -b doc/fix-typo
|
||||||
|
```
|
||||||
|
|
||||||
## Upgrading the Version
|
## Upgrading the Version
|
||||||
|
|
||||||
The versions in this repository should correspond to the [GitHub LimeSurvey Releases](https://github.com/LimeSurvey/LimeSurvey/releases)
|
The versions in this repository should correspond to the [GitHub LimeSurvey Releases](https://github.com/LimeSurvey/LimeSurvey/releases)
|
||||||
@@ -12,19 +21,19 @@ To update the version, simply update ARG variables for version and corresponding
|
|||||||
# Version from GitHub Tags
|
# Version from GitHub Tags
|
||||||
# sha256 of tar.gz from GitHub Releases
|
# sha256 of tar.gz from GitHub Releases
|
||||||
|
|
||||||
$ grep ARG 4.0/apache/Dockerfile
|
$ grep ARG 5.0/apache/Dockerfile
|
||||||
ARG version='4.3.13+200824'
|
ARG version='5.3.13+200824'
|
||||||
ARG sha256_checksum='4e9c6f20e'
|
ARG sha256_checksum='4e9c6f20e'
|
||||||
```
|
```
|
||||||
|
|
||||||
It is best to use the upgrade shell script:
|
It is best to use the upgrade shell script:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./upgrade.sh 4.3.13+200824
|
./upgrade.sh 5.3.13+200824
|
||||||
# Check if sha256 is correct
|
# Check if sha256 is correct
|
||||||
|
|
||||||
git add 4.0/ && git commit -m 'Upgrading to Version 4.3.13+200824'
|
git add 5.0/ && git commit -m 'Upgrading to Version 5.3.13+200824'
|
||||||
git tag 4.3.13-200824
|
git tag 5.3.13-200824
|
||||||
```
|
```
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|||||||
14
Makefile
14
Makefile
@@ -1,14 +1,14 @@
|
|||||||
# .PHONY: apache fpm fpm-alpine
|
RUNTIME?=podman
|
||||||
|
|
||||||
apache-lts:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
|
|||||||
| BASE_URL | Application Base URL |
|
| BASE_URL | Application Base URL |
|
||||||
| URL_FORMAT | URL Format. path or get |
|
| URL_FORMAT | URL Format. path or get |
|
||||||
| TABLE_SESSION | Enable table sessions (true) |
|
| TABLE_SESSION | Enable table sessions (true) |
|
||||||
| SHOW_SCRIPT_NAME | Script name in URL (true|false). Default: true |
|
| SHOW_SCRIPT_NAME | Script name in URL (true\|false). Default: true |
|
||||||
| 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 |
|
||||||
| ENCRYPT_KEYPAIR | Data encryption keypair |
|
| ENCRYPT_KEYPAIR | Data encryption keypair |
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
limesurvey:
|
limesurvey:
|
||||||
image: martialblog/limesurvey:latest
|
image: docker.io/martialblog/limesurvey:latest
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- DB_TYPE=pgsql
|
- DB_TYPE=pgsql
|
||||||
@@ -22,7 +22,7 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
db:
|
db:
|
||||||
image: postgres:10-alpine
|
image: docker.io/postgres:10-alpine
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- db-data:/var/lib/postgresql
|
- db-data:/var/lib/postgresql
|
||||||
|
|||||||
@@ -33,14 +33,14 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- "HOSTNAMES=www.example.com example.com"
|
- "HOSTNAMES=www.example.com example.com"
|
||||||
certbot:
|
certbot:
|
||||||
image: certbot/certbot
|
image: docker.io/certbot/certbot
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./certbot/conf:/etc/letsencrypt
|
- ./certbot/conf:/etc/letsencrypt
|
||||||
- ./certbot/www:/var/www/certbot
|
- ./certbot/www:/var/www/certbot
|
||||||
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
|
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
|
||||||
lime-db:
|
lime-db:
|
||||||
image: mysql:5.7
|
image: docker.io/mysql:5.7
|
||||||
environment:
|
environment:
|
||||||
- "MYSQL_USER=limesurvey"
|
- "MYSQL_USER=limesurvey"
|
||||||
- "MYSQL_DATABASE=limesurvey"
|
- "MYSQL_DATABASE=limesurvey"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ services:
|
|||||||
- "DB_PASSWORD=secret"
|
- "DB_PASSWORD=secret"
|
||||||
- "ADMIN_PASSWORD=foobar"
|
- "ADMIN_PASSWORD=foobar"
|
||||||
lime-web:
|
lime-web:
|
||||||
image: nginx:alpine
|
image: docker.io/nginx:alpine
|
||||||
links:
|
links:
|
||||||
- limesurvey
|
- limesurvey
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -28,7 +28,7 @@ services:
|
|||||||
- ./examples/nginx.conf:/etc/nginx/nginx.conf:ro
|
- ./examples/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||||
- lime:/var/www/html
|
- lime:/var/www/html
|
||||||
lime-db:
|
lime-db:
|
||||||
image: mysql:5.7
|
image: docker.io/mysql:5.7
|
||||||
environment:
|
environment:
|
||||||
- "MYSQL_USER=limesurvey"
|
- "MYSQL_USER=limesurvey"
|
||||||
- "MYSQL_DATABASE=limesurvey"
|
- "MYSQL_DATABASE=limesurvey"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ services:
|
|||||||
- "DB_PASSWORD=secret"
|
- "DB_PASSWORD=secret"
|
||||||
- "ADMIN_PASSWORD=foobar"
|
- "ADMIN_PASSWORD=foobar"
|
||||||
lime-web:
|
lime-web:
|
||||||
image: nginx
|
image: docker.io/nginx
|
||||||
links:
|
links:
|
||||||
- limesurvey
|
- limesurvey
|
||||||
ports:
|
ports:
|
||||||
@@ -26,7 +26,7 @@ services:
|
|||||||
- ./examples/nginx.conf:/etc/nginx/nginx.conf:ro
|
- ./examples/nginx.conf:/etc/nginx/nginx.conf:ro
|
||||||
- lime:/var/www/html
|
- lime:/var/www/html
|
||||||
lime-db:
|
lime-db:
|
||||||
image: mysql:5.7
|
image: docker.io/mysql:5.7
|
||||||
environment:
|
environment:
|
||||||
- "MYSQL_USER=limesurvey"
|
- "MYSQL_USER=limesurvey"
|
||||||
- "MYSQL_DATABASE=limesurvey"
|
- "MYSQL_DATABASE=limesurvey"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ services:
|
|||||||
- "DB_PASSWORD=secret"
|
- "DB_PASSWORD=secret"
|
||||||
- "ADMIN_PASSWORD=foobar"
|
- "ADMIN_PASSWORD=foobar"
|
||||||
lime-db:
|
lime-db:
|
||||||
image: postgres:10
|
image: docker.io/postgres:10
|
||||||
volumes:
|
volumes:
|
||||||
- db-data:/var/lib/postgresql/data
|
- db-data:/var/lib/postgresql/data
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ services:
|
|||||||
- "PUBLIC_URL=http://localhost:8888/limesurvey"
|
- "PUBLIC_URL=http://localhost:8888/limesurvey"
|
||||||
- "BASE_URL=http://localhost:8888/limesurvey"
|
- "BASE_URL=http://localhost:8888/limesurvey"
|
||||||
traefik:
|
traefik:
|
||||||
image: "traefik:v2.5"
|
image: docker.io/traefik:v2.5
|
||||||
container_name: "traefik"
|
container_name: "traefik"
|
||||||
command:
|
command:
|
||||||
- "--api.insecure=true"
|
- "--api.insecure=true"
|
||||||
@@ -37,7 +37,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
||||||
lime-db:
|
lime-db:
|
||||||
image: mysql:5.7
|
image: docker.io/mysql:5.7
|
||||||
environment:
|
environment:
|
||||||
- "MYSQL_USER=limesurvey"
|
- "MYSQL_USER=limesurvey"
|
||||||
- "MYSQL_DATABASE=limesurvey"
|
- "MYSQL_DATABASE=limesurvey"
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ services:
|
|||||||
# If you require an empty table prefix, use a space as the DB_TABLE_PREFIX
|
# If you require an empty table prefix, use a space as the DB_TABLE_PREFIX
|
||||||
# - "DB_TABLE_PREFIX= "
|
# - "DB_TABLE_PREFIX= "
|
||||||
lime-db:
|
lime-db:
|
||||||
image: mysql:5.7
|
image: docker.io/mysql:5.7
|
||||||
environment:
|
environment:
|
||||||
- "MYSQL_USER=limesurvey"
|
- "MYSQL_USER=limesurvey"
|
||||||
- "MYSQL_DATABASE=limesurvey"
|
- "MYSQL_DATABASE=limesurvey"
|
||||||
|
|||||||
Reference in New Issue
Block a user