Compare commits

..

4 Commits

Author SHA1 Message Date
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
5 changed files with 8 additions and 8 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.31+220104'
ARG sha256_checksum='f55cd1db1323c4bdcea9008f0025b0a5e2092942f329cf60db2f6cb387202a7f'
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.31+220104'
ARG sha256_checksum='f55cd1db1323c4bdcea9008f0025b0a5e2092942f329cf60db2f6cb387202a7f'
# 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.31+220104'
ARG sha256_checksum='f55cd1db1323c4bdcea9008f0025b0a5e2092942f329cf60db2f6cb387202a7f'
# Install OS dependencies
RUN set -ex; \

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"