Compare commits

...

13 Commits

Author SHA1 Message Date
Markus Opolka
cb2286e6be Upgrading to Version 5.2.13+220207 2022-02-17 07:56:44 +01:00
Markus Opolka
241f855f0e Upgrading to LTS Version 3.27.35+220208 2022-02-17 07:55:57 +01:00
Markus Opolka
7ba3ad6618 Upgrading to Version 5.2.12+220131 2022-02-08 07:59:42 +01:00
Markus Opolka
e486bf1ec6 Upgrading to LTS Version 3.27.34+220132 2022-02-08 07:58:40 +01:00
Markus Opolka
dfb5b39211 Upgrading to Version 5.2.11+220124 2022-02-01 08:11:21 +01:00
Markus Opolka
16175a30ac Upgrading to LTS Version 3.27.33+220125 2022-02-01 08:09:52 +01:00
Markus Opolka
69178ec686 Upgrading to Version 5.2.10+220118 2022-01-24 14:06:58 +01:00
Markus Opolka
822a936b36 Upgrading to LTS Version 3.27.32+220119 2022-01-24 14:06:16 +01:00
Markus Opolka
99f898aedc Upgrading to Version 5.2.9+220110 2022-01-18 16:52:59 +01:00
Markus Opolka
b3bfb6f2a3 Upgrading to LTS Version 3.27.31+220104 2022-01-18 16:49:41 +01:00
Markus Opolka
f2c65ebc44 Enable :latest Tag for Apache Image (#115) 2022-01-18 14:54:17 +01:00
Jack Henschel
80a9ca9173 Merge pull request #113 from martialblog/jacksgt-patch-1
Correct path to data volume of Postgres deployment
2022-01-11 11:35:45 +01:00
Jack Henschel
cb13a177b6 Correct path to data volume of Postgres deployment
Fixes https://github.com/martialblog/docker-limesurvey/issues/112
2022-01-10 08:31:20 +01:00
8 changed files with 14 additions and 14 deletions

View File

@@ -52,7 +52,7 @@ jobs:
type=match,pattern=(.+),group=1
type=match,pattern=^(\d+),group=1
flavor: |
latest=false
latest=true
suffix=-apache
- name: 'Build and push latest Apache container images'
uses: docker/build-push-action@v2

View File

@@ -1,7 +1,7 @@
FROM php:8.0-apache
LABEL maintainer="markus@martialblog.de"
ARG version='3.27.30+211222'
ARG sha256_checksum='e082e83e01d895f3a343b2920392e621e020c08b6bfaf0e0a895207da4d59c54'
ARG version='3.27.35+220208'
ARG sha256_checksum='521aef21bc03d617ad2871b1d58a6baf51134cbc3210f1c7523ea5035241bf58'
ARG USER=root
ARG LISTEN_PORT=80

View File

@@ -1,7 +1,7 @@
FROM php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de"
ARG version='3.27.30+211222'
ARG sha256_checksum='e082e83e01d895f3a343b2920392e621e020c08b6bfaf0e0a895207da4d59c54'
ARG version='3.27.35+220208'
ARG sha256_checksum='521aef21bc03d617ad2871b1d58a6baf51134cbc3210f1c7523ea5035241bf58'
# Install OS dependencies
RUN set -ex; \

View File

@@ -1,7 +1,7 @@
FROM php:8.0-fpm
LABEL maintainer="markus@martialblog.de"
ARG version='3.27.30+211222'
ARG sha256_checksum='e082e83e01d895f3a343b2920392e621e020c08b6bfaf0e0a895207da4d59c54'
ARG version='3.27.35+220208'
ARG sha256_checksum='521aef21bc03d617ad2871b1d58a6baf51134cbc3210f1c7523ea5035241bf58'
# Install OS dependencies
RUN set -ex; \

View File

@@ -1,7 +1,7 @@
FROM php:8.0-apache
LABEL maintainer="markus@martialblog.de"
ARG version='5.2.7+211221'
ARG sha256_checksum='79f9b2d48c74bfa121fad079fb7f2a6fff79c44ffb2c048a27bc2248f35af258'
ARG version='5.2.13+220207'
ARG sha256_checksum='963b3176fcd883ce010d23d6bffa43ce1111e4f884f68d7a5ae4fe9377675e15'
ARG USER=www-data
ARG LISTEN_PORT=8080

View File

@@ -1,7 +1,7 @@
FROM php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de"
ARG version='5.2.7+211221'
ARG sha256_checksum='79f9b2d48c74bfa121fad079fb7f2a6fff79c44ffb2c048a27bc2248f35af258'
ARG version='5.2.13+220207'
ARG sha256_checksum='963b3176fcd883ce010d23d6bffa43ce1111e4f884f68d7a5ae4fe9377675e15'
ARG USER=www-data
# Install OS dependencies

View File

@@ -1,7 +1,7 @@
FROM php:8.0-fpm
LABEL maintainer="markus@martialblog.de"
ARG version='5.2.7+211221'
ARG sha256_checksum='79f9b2d48c74bfa121fad079fb7f2a6fff79c44ffb2c048a27bc2248f35af258'
ARG version='5.2.13+220207'
ARG sha256_checksum='963b3176fcd883ce010d23d6bffa43ce1111e4f884f68d7a5ae4fe9377675e15'
ARG USER=www-data
# Install OS dependencies

View File

@@ -24,7 +24,7 @@ services:
lime-db:
image: postgres:10
volumes:
- db-data:/var/lib/postgresql
- db-data:/var/lib/postgresql/data
environment:
- "POSTGRES_USER=limesurvey"
- "POSTGRES_DB=limesurvey"