mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
Compare commits
24 Commits
6.0.0-2304
...
6.0.7-2305
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
23e6fa6f88 | ||
|
|
4e30695b0b | ||
|
|
f290fc7f1c | ||
|
|
20c1fafdf6 | ||
|
|
281cc199aa | ||
|
|
d15b0a2693 | ||
|
|
164767fe97 | ||
|
|
0478c67f4a | ||
|
|
07fea8dfcc | ||
|
|
4250f57653 | ||
|
|
919627c293 | ||
|
|
964ed7b38e | ||
|
|
9b1ee53a4a | ||
|
|
d3c5ed4e35 | ||
|
|
b1b32c2380 | ||
|
|
f79d1e3a9d | ||
|
|
bfa8bbb85a | ||
|
|
9ff5cdf1cb | ||
|
|
3552c1b90d | ||
|
|
76a7f28105 | ||
|
|
36d49a4fbb | ||
|
|
b9c9c3f854 | ||
|
|
6e06dec555 | ||
|
|
b9627cda92 |
9
.github/renovate.json
vendored
Normal file
9
.github/renovate.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"config:base"
|
||||||
|
],
|
||||||
|
"enabledManagers": ["dockerfile", "github-actions"],
|
||||||
|
"dockerfile": {
|
||||||
|
"ignorePaths": ["4.0", "nginx-certbot"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -16,10 +16,10 @@ jobs:
|
|||||||
- 6.0/fpm/Dockerfile
|
- 6.0/fpm/Dockerfile
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: hadolint/hadolint-action@v1.5.0
|
- uses: hadolint/hadolint-action@v3.1.0
|
||||||
with:
|
with:
|
||||||
dockerfile: ${{ matrix.dockerfile }}
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
ignore: DL4006 DL3008 DL3018
|
ignore: "DL4006,DL3008,DL3018"
|
||||||
|
|
||||||
push_images_to_registries:
|
push_images_to_registries:
|
||||||
name: Push Container Images to registries
|
name: Push Container Images to registries
|
||||||
@@ -59,7 +59,7 @@ jobs:
|
|||||||
latest=true
|
latest=true
|
||||||
suffix=-apache
|
suffix=-apache
|
||||||
- name: 'Build and push latest Apache container images'
|
- name: 'Build and push latest Apache container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 6.0/apache
|
context: 6.0/apache
|
||||||
push: true
|
push: true
|
||||||
@@ -80,7 +80,7 @@ jobs:
|
|||||||
latest=false
|
latest=false
|
||||||
suffix=-fpm
|
suffix=-fpm
|
||||||
- name: 'Build and push latest fpm container images'
|
- name: 'Build and push latest fpm container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 6.0/fpm
|
context: 6.0/fpm
|
||||||
push: true
|
push: true
|
||||||
@@ -101,7 +101,7 @@ jobs:
|
|||||||
latest=false
|
latest=false
|
||||||
suffix=-fpm-alpine
|
suffix=-fpm-alpine
|
||||||
- name: 'Build and push latest fpm-alpine container images'
|
- name: 'Build and push latest fpm-alpine container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 6.0/fpm-alpine
|
context: 6.0/fpm-alpine
|
||||||
push: true
|
push: true
|
||||||
|
|||||||
@@ -16,10 +16,10 @@ jobs:
|
|||||||
- 5.0/fpm/Dockerfile
|
- 5.0/fpm/Dockerfile
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: hadolint/hadolint-action@v1.5.0
|
- uses: hadolint/hadolint-action@v3.1.0
|
||||||
with:
|
with:
|
||||||
dockerfile: ${{ matrix.dockerfile }}
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
ignore: DL4006 DL3008 DL3018
|
ignore: "DL4006,DL3008,DL3018"
|
||||||
|
|
||||||
push_images_to_registries:
|
push_images_to_registries:
|
||||||
name: 'Push container images to registries'
|
name: 'Push container images to registries'
|
||||||
@@ -29,11 +29,6 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
platform:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/arm64
|
|
||||||
steps:
|
steps:
|
||||||
- name: 'Check out the repo'
|
- name: 'Check out the repo'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -64,13 +59,13 @@ jobs:
|
|||||||
latest=false
|
latest=false
|
||||||
suffix=-apache
|
suffix=-apache
|
||||||
- name: 'Build and push LTS apache container images'
|
- name: 'Build and push LTS apache container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 5.0/apache
|
context: 5.0/apache
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.metadata-apache.outputs.tags }}
|
tags: ${{ steps.metadata-apache.outputs.tags }}
|
||||||
labels: ${{ steps.metadata-apache.outputs.labels }}
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
- name: 'FPM variant metadata'
|
- name: 'FPM variant metadata'
|
||||||
id: metadata-fpm
|
id: metadata-fpm
|
||||||
@@ -85,13 +80,13 @@ jobs:
|
|||||||
latest=false
|
latest=false
|
||||||
suffix=-fpm
|
suffix=-fpm
|
||||||
- name: 'Build and push LTS fpm container images'
|
- name: 'Build and push LTS fpm container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 5.0/fpm
|
context: 5.0/fpm
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.metadata-fpm.outputs.tags }}
|
tags: ${{ steps.metadata-fpm.outputs.tags }}
|
||||||
labels: ${{ steps.metadata-apache.outputs.labels }}
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
- name: 'FPM Alpine variant metadata'
|
- name: 'FPM Alpine variant metadata'
|
||||||
id: metadata-fpm-alpine
|
id: metadata-fpm-alpine
|
||||||
@@ -106,10 +101,10 @@ jobs:
|
|||||||
latest=false
|
latest=false
|
||||||
suffix=-fpm-alpine
|
suffix=-fpm-alpine
|
||||||
- name: 'Build and push LTS fpm-alpine container images'
|
- name: 'Build and push LTS fpm-alpine container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 5.0/fpm-alpine
|
context: 5.0/fpm-alpine
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.metadata-fpm-alpine.outputs.tags }}
|
tags: ${{ steps.metadata-fpm-alpine.outputs.tags }}
|
||||||
labels: ${{ steps.metadata-apache.outputs.labels }}
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|||||||
4
.github/workflows/lint-dockerfiles.yaml
vendored
4
.github/workflows/lint-dockerfiles.yaml
vendored
@@ -18,7 +18,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: hadolint/hadolint-action@v1.5.0
|
- uses: hadolint/hadolint-action@v3.1.0
|
||||||
with:
|
with:
|
||||||
dockerfile: ${{ matrix.dockerfile }}
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
ignore: DL4006 DL3008 DL3018
|
ignore: "DL4006,DL3008,DL3018"
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: 'Build Container images'
|
- name: 'Build Container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 6.0/${{ matrix.context }}
|
context: 6.0/${{ matrix.context }}
|
||||||
push: false
|
push: false
|
||||||
@@ -42,7 +42,7 @@ jobs:
|
|||||||
platforms: ${{ matrix.platform }}
|
platforms: ${{ matrix.platform }}
|
||||||
|
|
||||||
- name: 'Run Structure tests'
|
- name: 'Run Structure tests'
|
||||||
uses: plexsystems/container-structure-test-action@v0.2.0
|
uses: plexsystems/container-structure-test-action@v0.3.0
|
||||||
with:
|
with:
|
||||||
image: docker.io/martialblog/limesurvey:6-${{ matrix.context }}
|
image: docker.io/martialblog/limesurvey:6-${{ matrix.context }}
|
||||||
config: tests/${{ matrix.context }}-tests.yaml
|
config: tests/${{ matrix.context }}-tests.yaml
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: 'Build Container images'
|
- name: 'Build Container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 6.0/${{ matrix.context }}
|
context: 6.0/${{ matrix.context }}
|
||||||
push: false
|
push: false
|
||||||
@@ -33,7 +33,7 @@ jobs:
|
|||||||
tags: docker.io/martialblog/limesurvey:6-${{ matrix.context }}
|
tags: docker.io/martialblog/limesurvey:6-${{ matrix.context }}
|
||||||
|
|
||||||
- name: 'Run Structure tests'
|
- name: 'Run Structure tests'
|
||||||
uses: plexsystems/container-structure-test-action@v0.2.0
|
uses: plexsystems/container-structure-test-action@v0.3.0
|
||||||
with:
|
with:
|
||||||
image: docker.io/martialblog/limesurvey:6-${{ matrix.context }}
|
image: docker.io/martialblog/limesurvey:6-${{ matrix.context }}
|
||||||
config: tests/${{ matrix.context }}-tests.yaml
|
config: tests/${{ matrix.context }}-tests.yaml
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ jobs:
|
|||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: 'Build Container images'
|
- name: 'Build Container images'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: 5.0/${{ matrix.context }}
|
context: 5.0/${{ matrix.context }}
|
||||||
push: false
|
push: false
|
||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
tags: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
tags: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
||||||
|
|
||||||
- name: 'Run Structure tests'
|
- name: 'Run Structure tests'
|
||||||
uses: plexsystems/container-structure-test-action@v0.2.0
|
uses: plexsystems/container-structure-test-action@v0.3.0
|
||||||
with:
|
with:
|
||||||
image: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
image: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
||||||
config: tests/${{ matrix.context }}-tests.yaml
|
config: tests/${{ matrix.context }}-tests.yaml
|
||||||
|
|||||||
@@ -59,8 +59,8 @@ 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"
|
||||||
|
|
||||||
ARG version="3.28.55+230328"
|
ARG version="3.28.56+230404"
|
||||||
ARG sha256_checksum="7f820259aa68fcd2fff7a23e9261ad65af0b28085ef93a69bf14cc068ee829c5"
|
ARG sha256_checksum="abfdc800d97feabbd448df4a2cfa72a954d2f6b013475132b0691ac2563e7228"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=root
|
ARG USER=root
|
||||||
ARG LISTEN_PORT=80
|
ARG LISTEN_PORT=80
|
||||||
|
|||||||
@@ -33,8 +33,8 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ARG version="3.28.55+230328"
|
ARG version="3.28.56+230404"
|
||||||
ARG sha256_checksum="7f820259aa68fcd2fff7a23e9261ad65af0b28085ef93a69bf14cc068ee829c5"
|
ARG sha256_checksum="abfdc800d97feabbd448df4a2cfa72a954d2f6b013475132b0691ac2563e7228"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
|
|||||||
@@ -46,8 +46,8 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ARG version="3.28.55+230328"
|
ARG version="3.28.56+230404"
|
||||||
ARG sha256_checksum="7f820259aa68fcd2fff7a23e9261ad65af0b28085ef93a69bf14cc068ee829c5"
|
ARG sha256_checksum="abfdc800d97feabbd448df4a2cfa72a954d2f6b013475132b0691ac2563e7228"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|
||||||
|
|||||||
@@ -60,8 +60,8 @@ 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"
|
||||||
|
|
||||||
ARG version="5.6.14+230403"
|
ARG version="5.6.21+230518"
|
||||||
ARG sha256_checksum="671689d54db6c018c5dd764c852fccd5e582c4cf743bd7fe50329d2fbab5f8a7"
|
ARG sha256_checksum="47ae13c225b7986e65913e3d2206fd53a7acf511166d2d1a73b5257830eacfef"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ARG LISTEN_PORT=8080
|
ARG LISTEN_PORT=8080
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ARG version="5.6.14+230403"
|
ARG version="5.6.21+230518"
|
||||||
ARG sha256_checksum="671689d54db6c018c5dd764c852fccd5e582c4cf743bd7fe50329d2fbab5f8a7"
|
ARG sha256_checksum="47ae13c225b7986e65913e3d2206fd53a7acf511166d2d1a73b5257830eacfef"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|||||||
@@ -46,8 +46,8 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ARG version="5.6.14+230403"
|
ARG version="5.6.21+230518"
|
||||||
ARG sha256_checksum="671689d54db6c018c5dd764c852fccd5e582c4cf743bd7fe50329d2fbab5f8a7"
|
ARG sha256_checksum="47ae13c225b7986e65913e3d2206fd53a7acf511166d2d1a73b5257830eacfef"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|||||||
@@ -60,8 +60,8 @@ 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"
|
||||||
|
|
||||||
ARG version="6.0.0+230405"
|
ARG version="6.0.7+230515"
|
||||||
ARG sha256_checksum="ee636330911150b5f109323b6226c48d9fd7634856b251bbf66a75a29d4b4756"
|
ARG sha256_checksum="de13467a4963d9759bd24300b5bd5b07f3149b0a62943180afaadfbd0513fef7"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ARG LISTEN_PORT=8080
|
ARG LISTEN_PORT=8080
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ARG version="6.0.0+230405"
|
ARG version="6.0.7+230515"
|
||||||
ARG sha256_checksum="ee636330911150b5f109323b6226c48d9fd7634856b251bbf66a75a29d4b4756"
|
ARG sha256_checksum="de13467a4963d9759bd24300b5bd5b07f3149b0a62943180afaadfbd0513fef7"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|||||||
@@ -46,8 +46,8 @@ RUN set -ex; \
|
|||||||
tidy \
|
tidy \
|
||||||
zip
|
zip
|
||||||
|
|
||||||
ARG version="6.0.0+230405"
|
ARG version="6.0.7+230515"
|
||||||
ARG sha256_checksum="ee636330911150b5f109323b6226c48d9fd7634856b251bbf66a75a29d4b4756"
|
ARG sha256_checksum="de13467a4963d9759bd24300b5bd5b07f3149b0a62943180afaadfbd0513fef7"
|
||||||
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ENV LIMESURVEY_VERSION=$version
|
ENV LIMESURVEY_VERSION=$version
|
||||||
|
|||||||
Reference in New Issue
Block a user