mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
Compare commits
14 Commits
3.27.18-21
...
3.27.24-21
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18f6a97ed3 | ||
|
|
5d9c116b64 | ||
|
|
4b02c3c26d | ||
|
|
1676677dfc | ||
|
|
681f421d6f | ||
|
|
baab608bd9 | ||
|
|
7e1fa3eedd | ||
|
|
5a401f33f7 | ||
|
|
c3a3e77b76 | ||
|
|
d6af8e0a03 | ||
|
|
633893f9a8 | ||
|
|
3cc111f903 | ||
|
|
0d572c645c | ||
|
|
bca073774f |
@@ -32,21 +32,3 @@ jobs:
|
||||
with:
|
||||
image: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
||||
config: tests/${{ matrix.context }}-tests.yaml
|
||||
|
||||
- name: 'Run vulnerability scanner'
|
||||
uses: aquasecurity/trivy-action@master
|
||||
with:
|
||||
image-ref: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
||||
format: 'template'
|
||||
template: '@/contrib/sarif.tpl'
|
||||
exit-code: '0'
|
||||
# Since we are not in charge of the Application
|
||||
vuln-type: 'os'
|
||||
output: trivy-results-5-${{ matrix.context }}.sarif
|
||||
severity: 'CRITICAL,HIGH'
|
||||
|
||||
- name: 'Upload Trivy scan results to GitHub'
|
||||
uses: github/codeql-action/upload-sarif@v1
|
||||
with:
|
||||
sarif_file: trivy-results-5-${{ matrix.context }}.sarif
|
||||
category: "${{ matrix.context }}"
|
||||
|
||||
18
.github/workflows/test-lts-container-images.yaml
vendored
18
.github/workflows/test-lts-container-images.yaml
vendored
@@ -32,21 +32,3 @@ jobs:
|
||||
with:
|
||||
image: docker.io/martialblog/limesurvey:3-${{ matrix.context }}
|
||||
config: tests/${{ matrix.context }}-tests.yaml
|
||||
|
||||
- name: 'Run vulnerability scanner'
|
||||
uses: aquasecurity/trivy-action@master
|
||||
with:
|
||||
image-ref: docker.io/martialblog/limesurvey:3-${{ matrix.context }}
|
||||
format: 'template'
|
||||
template: '@/contrib/sarif.tpl'
|
||||
exit-code: '0'
|
||||
# Since we are not in charge of the Application
|
||||
vuln-type: 'os'
|
||||
output: trivy-results-3-${{ matrix.context }}.sarif
|
||||
severity: 'CRITICAL,HIGH'
|
||||
|
||||
- name: 'Upload Trivy scan results to GitHub'
|
||||
uses: github/codeql-action/upload-sarif@v1
|
||||
with:
|
||||
sarif_file: trivy-results-3-${{ matrix.context }}.sarif
|
||||
category: "${{ matrix.context }}"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM php:7.4-apache
|
||||
LABEL maintainer="markus@martialblog.de"
|
||||
ARG version='3.27.18+210921'
|
||||
ARG sha256_checksum='7ed144511d6d8bcfc99d9aff2d0c94bf27fbea302ee7d19a8de7aef09cb7245a'
|
||||
ARG version='3.27.24+211108'
|
||||
ARG sha256_checksum='d2fe4607d4e93a8d297ee6eac667e6ef221e246ee5bc68bb9e419daa7db90d77'
|
||||
ARG USER=root
|
||||
ARG LISTEN_PORT=80
|
||||
|
||||
|
||||
@@ -89,7 +89,7 @@ return array(
|
||||
'username' => '$DB_USERNAME',
|
||||
'password' => '$DB_PASSWORD',
|
||||
'charset' => '$DB_CHARSET',
|
||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
||||
'tablePrefix' => '${DB_TABLE_PREFIX//[[:space:]]/}',
|
||||
),
|
||||
//'session' => array (
|
||||
// 'class' => 'application.core.web.DbHttpSession',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM php:7.4-fpm-alpine
|
||||
LABEL maintainer="markus@martialblog.de"
|
||||
ARG version='3.27.18+210921'
|
||||
ARG sha256_checksum='7ed144511d6d8bcfc99d9aff2d0c94bf27fbea302ee7d19a8de7aef09cb7245a'
|
||||
ARG version='3.27.24+211108'
|
||||
ARG sha256_checksum='d2fe4607d4e93a8d297ee6eac667e6ef221e246ee5bc68bb9e419daa7db90d77'
|
||||
|
||||
# Install OS dependencies
|
||||
RUN set -ex; \
|
||||
|
||||
@@ -82,7 +82,7 @@ return array(
|
||||
'username' => '$DB_USERNAME',
|
||||
'password' => '$DB_PASSWORD',
|
||||
'charset' => '$DB_CHARSET',
|
||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
||||
'tablePrefix' => '${DB_TABLE_PREFIX//[[:space:]]/}',
|
||||
),
|
||||
//'session' => array (
|
||||
// 'class' => 'application.core.web.DbHttpSession',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM php:7.4-fpm
|
||||
LABEL maintainer="markus@martialblog.de"
|
||||
ARG version='3.27.18+210921'
|
||||
ARG sha256_checksum='7ed144511d6d8bcfc99d9aff2d0c94bf27fbea302ee7d19a8de7aef09cb7245a'
|
||||
ARG version='3.27.24+211108'
|
||||
ARG sha256_checksum='d2fe4607d4e93a8d297ee6eac667e6ef221e246ee5bc68bb9e419daa7db90d77'
|
||||
|
||||
# Install OS dependencies
|
||||
RUN set -ex; \
|
||||
|
||||
@@ -82,7 +82,7 @@ return array(
|
||||
'username' => '$DB_USERNAME',
|
||||
'password' => '$DB_PASSWORD',
|
||||
'charset' => '$DB_CHARSET',
|
||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
||||
'tablePrefix' => '${DB_TABLE_PREFIX//[[:space:]]/}',
|
||||
),
|
||||
//'session' => array (
|
||||
// 'class' => 'application.core.web.DbHttpSession',
|
||||
|
||||
@@ -10,6 +10,7 @@ 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:-}
|
||||
@@ -106,6 +107,7 @@ return array(
|
||||
'publicurl'=>'$PUBLIC_URL',
|
||||
'debug'=>$DEBUG,
|
||||
'debugsql'=>$DEBUG_SQL,
|
||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@ 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:-}
|
||||
@@ -99,6 +100,7 @@ return array(
|
||||
'publicurl'=>'$PUBLIC_URL',
|
||||
'debug'=>$DEBUG,
|
||||
'debugsql'=>$DEBUG_SQL,
|
||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@ 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:-}
|
||||
@@ -99,6 +100,7 @@ return array(
|
||||
'publicurl'=>'$PUBLIC_URL',
|
||||
'debug'=>$DEBUG,
|
||||
'debugsql'=>$DEBUG_SQL,
|
||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM php:8-apache
|
||||
LABEL maintainer="markus@martialblog.de"
|
||||
ARG version='5.1.11+210920'
|
||||
ARG sha256_checksum='50dc59b7761bb8d56cbae77cd713dceeace060ae81680cfd54e35578386b20ed'
|
||||
ARG version='5.2.0+211110'
|
||||
ARG sha256_checksum='4f1299a463d72c6eb8d7acf8fbadecd867cf78c13075bafc2524e1842a661a83'
|
||||
ARG USER=www-data
|
||||
ARG LISTEN_PORT=8080
|
||||
|
||||
|
||||
@@ -10,10 +10,13 @@ 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:-}
|
||||
ENCRYPT_NONCE=${ENCRYPT_NONCE:-}
|
||||
ENCRYPT_SECRET_BOX_KEY=${ENCRYPT_SECRET_BOX_KEY:-}
|
||||
|
||||
ADMIN_USER=${ADMIN_USER:-'admin'}
|
||||
ADMIN_NAME=${ADMIN_NAME:-'admin'}
|
||||
@@ -93,7 +96,7 @@ return array(
|
||||
'username' => '$DB_USERNAME',
|
||||
'password' => '$DB_PASSWORD',
|
||||
'charset' => '$DB_CHARSET',
|
||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
||||
'tablePrefix' => '${DB_TABLE_PREFIX//[[:space:]]/}',
|
||||
),
|
||||
//'session' => array (
|
||||
// 'class' => 'application.core.web.DbHttpSession',
|
||||
@@ -113,6 +116,7 @@ return array(
|
||||
'publicurl'=>'$PUBLIC_URL',
|
||||
'debug'=>$DEBUG,
|
||||
'debugsql'=>$DEBUG_SQL,
|
||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
||||
)
|
||||
);
|
||||
|
||||
@@ -140,6 +144,8 @@ else
|
||||
\$config['encryptionkeypair'] = '$ENCRYPT_KEYPAIR';
|
||||
\$config['encryptionpublickey'] = '$ENCRYPT_PUBLIC_KEY';
|
||||
\$config['encryptionsecretkey'] = '$ENCRYPT_SECRET_KEY';
|
||||
\$config['encryptionnonce'] = '$ENCRYPT_NONCE';
|
||||
\$config['encryptionsecretboxkey'] = '$ENCRYPT_SECRET_BOX_KEY';
|
||||
return \$config;
|
||||
EOF
|
||||
else
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM php:8-fpm-alpine
|
||||
LABEL maintainer="markus@martialblog.de"
|
||||
ARG version='5.1.11+210920'
|
||||
ARG sha256_checksum='50dc59b7761bb8d56cbae77cd713dceeace060ae81680cfd54e35578386b20ed'
|
||||
ARG version='5.2.0+211110'
|
||||
ARG sha256_checksum='4f1299a463d72c6eb8d7acf8fbadecd867cf78c13075bafc2524e1842a661a83'
|
||||
ARG USER=www-data
|
||||
|
||||
# Install OS dependencies
|
||||
|
||||
@@ -10,10 +10,13 @@ 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:-}
|
||||
ENCRYPT_NONCE=${ENCRYPT_NONCE:-}
|
||||
ENCRYPT_SECRET_BOX_KEY=${ENCRYPT_SECRET_BOX_KEY:-}
|
||||
|
||||
ADMIN_USER=${ADMIN_USER:-'admin'}
|
||||
ADMIN_NAME=${ADMIN_NAME:-'admin'}
|
||||
@@ -86,7 +89,7 @@ return array(
|
||||
'username' => '$DB_USERNAME',
|
||||
'password' => '$DB_PASSWORD',
|
||||
'charset' => '$DB_CHARSET',
|
||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
||||
'tablePrefix' => '${DB_TABLE_PREFIX//[[:space:]]/}',
|
||||
),
|
||||
//'session' => array (
|
||||
// 'class' => 'application.core.web.DbHttpSession',
|
||||
@@ -106,6 +109,7 @@ return array(
|
||||
'publicurl'=>'$PUBLIC_URL',
|
||||
'debug'=>$DEBUG,
|
||||
'debugsql'=>$DEBUG_SQL,
|
||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
||||
)
|
||||
);
|
||||
|
||||
@@ -133,6 +137,8 @@ else
|
||||
\$config['encryptionkeypair'] = '$ENCRYPT_KEYPAIR';
|
||||
\$config['encryptionpublickey'] = '$ENCRYPT_PUBLIC_KEY';
|
||||
\$config['encryptionsecretkey'] = '$ENCRYPT_SECRET_KEY';
|
||||
\$config['encryptionnonce'] = '$ENCRYPT_NONCE';
|
||||
\$config['encryptionsecretboxkey'] = '$ENCRYPT_SECRET_BOX_KEY';
|
||||
return \$config;
|
||||
EOF
|
||||
else
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
FROM php:8-fpm
|
||||
LABEL maintainer="markus@martialblog.de"
|
||||
ARG version='5.1.11+210920'
|
||||
ARG sha256_checksum='50dc59b7761bb8d56cbae77cd713dceeace060ae81680cfd54e35578386b20ed'
|
||||
ARG version='5.2.0+211110'
|
||||
ARG sha256_checksum='4f1299a463d72c6eb8d7acf8fbadecd867cf78c13075bafc2524e1842a661a83'
|
||||
ARG USER=www-data
|
||||
|
||||
# Install OS dependencies
|
||||
|
||||
@@ -10,10 +10,13 @@ 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:-}
|
||||
ENCRYPT_NONCE=${ENCRYPT_NONCE:-}
|
||||
ENCRYPT_SECRET_BOX_KEY=${ENCRYPT_SECRET_BOX_KEY:-}
|
||||
|
||||
ADMIN_USER=${ADMIN_USER:-'admin'}
|
||||
ADMIN_NAME=${ADMIN_NAME:-'admin'}
|
||||
@@ -86,7 +89,7 @@ return array(
|
||||
'username' => '$DB_USERNAME',
|
||||
'password' => '$DB_PASSWORD',
|
||||
'charset' => '$DB_CHARSET',
|
||||
'tablePrefix' => '$DB_TABLE_PREFIX',
|
||||
'tablePrefix' => '${DB_TABLE_PREFIX//[[:space:]]/}',
|
||||
),
|
||||
//'session' => array (
|
||||
// 'class' => 'application.core.web.DbHttpSession',
|
||||
@@ -106,6 +109,7 @@ return array(
|
||||
'publicurl'=>'$PUBLIC_URL',
|
||||
'debug'=>$DEBUG,
|
||||
'debugsql'=>$DEBUG_SQL,
|
||||
'mysqlEngine' => '$DB_MYSQL_ENGINE',
|
||||
)
|
||||
);
|
||||
|
||||
@@ -133,6 +137,8 @@ else
|
||||
\$config['encryptionkeypair'] = '$ENCRYPT_KEYPAIR';
|
||||
\$config['encryptionpublickey'] = '$ENCRYPT_PUBLIC_KEY';
|
||||
\$config['encryptionsecretkey'] = '$ENCRYPT_SECRET_KEY';
|
||||
\$config['encryptionnonce'] = '$ENCRYPT_NONCE';
|
||||
\$config['encryptionsecretboxkey'] = '$ENCRYPT_SECRET_BOX_KEY';
|
||||
return \$config;
|
||||
EOF
|
||||
else
|
||||
|
||||
@@ -103,7 +103,8 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
|
||||
| DB_PORT | Database server port |
|
||||
| DB_SOCK | Database unix socket instead of host/port |
|
||||
| DB_NAME | Database name |
|
||||
| DB_TABLE_PREFIX | Database table prefix |
|
||||
| DB_TABLE_PREFIX | Database table prefix; set this to a single whitespace if you don't want a table prefix. |
|
||||
| DB_MYSQL_ENGINE | MySQL engine used for survey tables (values: MyISAM, InnoDB, default: MyISAM) |
|
||||
| DB_USERNAME | Database user |
|
||||
| DB_PASSWORD | Database user's password |
|
||||
| ADMIN_USER | Initial LimeSurvey Admin User |
|
||||
@@ -120,6 +121,8 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
|
||||
| ENCRYPT_KEYPAIR | Data encryption keypair |
|
||||
| ENCRYPT_PUBLIC_KEY | Data encryption public key |
|
||||
| ENCRYPT_SECRET_KEY | Data encryption secret key |
|
||||
| ENCRYPT_NONCE | Data encryption nonce (used in 5.0) |
|
||||
| ENCRYPT_SECRET_BOX_KEY | Data encryption secret box key (used in 5.0) |
|
||||
| LISTEN_PORT | Apache: Listen port. Default: 8080 |
|
||||
|
||||
For further details on the settings see: https://manual.limesurvey.org/Optional_settings#Advanced_Path_Settings
|
||||
|
||||
@@ -17,6 +17,8 @@ services:
|
||||
- "DB_HOST=lime-db"
|
||||
- "DB_PASSWORD=secret"
|
||||
- "ADMIN_PASSWORD=foobar"
|
||||
# If you require an empty table prefix, use a space as the DB_TABLE_PREFIX
|
||||
# - "DB_TABLE_PREFIX= "
|
||||
lime-db:
|
||||
image: mysql:5.7
|
||||
environment:
|
||||
|
||||
Reference in New Issue
Block a user