mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-07 17:08:53 +01:00
Compare commits
23 Commits
0.0.0-test
...
3.27.32-22
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
822a936b36 | ||
|
|
99f898aedc | ||
|
|
b3bfb6f2a3 | ||
|
|
f2c65ebc44 | ||
|
|
80a9ca9173 | ||
|
|
cb13a177b6 | ||
|
|
70a86c2301 | ||
|
|
bcd42d3f63 | ||
|
|
0dbe244a9c | ||
|
|
41520cf155 | ||
|
|
4554f13f3d | ||
|
|
edea222851 | ||
|
|
0e35fa6d05 | ||
|
|
0650b759c0 | ||
|
|
7f87925fa7 | ||
|
|
71fade66fe | ||
|
|
1ff7ea366d | ||
|
|
fadbe68076 | ||
|
|
c73949610f | ||
|
|
79aea85bfe | ||
|
|
453cb4b1eb | ||
|
|
58ad34b0bd | ||
|
|
8f1b452789 |
@@ -1,10 +1,30 @@
|
|||||||
name: Publish Latest Container Images
|
name: Publish Latest Container Images
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '5.*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
lint_dockerfiles:
|
||||||
|
name: Lint Dockerfile with hadolint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
dockerfile:
|
||||||
|
- 5.0/apache/Dockerfile
|
||||||
|
- 5.0/fpm-alpine/Dockerfile
|
||||||
|
- 5.0/fpm/Dockerfile
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: hadolint/hadolint-action@v1.5.0
|
||||||
|
with:
|
||||||
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
|
ignore: DL4006 DL3008 DL3018
|
||||||
|
|
||||||
push_images_to_registries:
|
push_images_to_registries:
|
||||||
name: Push Container Images to registries
|
name: Push Container Images to registries
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [lint_dockerfiles]
|
||||||
environment: docker-build
|
environment: docker-build
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
@@ -32,5 +52,52 @@ jobs:
|
|||||||
type=match,pattern=(.+),group=1
|
type=match,pattern=(.+),group=1
|
||||||
type=match,pattern=^(\d+),group=1
|
type=match,pattern=^(\d+),group=1
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=false
|
latest=true
|
||||||
suffix=-apache
|
suffix=-apache
|
||||||
|
- name: 'Build and push latest Apache container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 5.0/apache
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata-apache.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
|
|
||||||
|
- name: 'FPM variant metadata'
|
||||||
|
id: metadata-fpm
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
docker.io/martialblog/limesurvey
|
||||||
|
tags: |
|
||||||
|
type=match,pattern=(.+),group=1
|
||||||
|
type=match,pattern=^(\d+),group=1
|
||||||
|
flavor: |
|
||||||
|
latest=false
|
||||||
|
suffix=-fpm
|
||||||
|
- name: 'Build and push latest fpm container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 5.0/fpm
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata-fpm.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata-fpm.outputs.labels }}
|
||||||
|
|
||||||
|
- name: 'FPM Alpine variant metadata'
|
||||||
|
id: metadata-fpm-alpine
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
docker.io/martialblog/limesurvey
|
||||||
|
tags: |
|
||||||
|
type=match,pattern=(.+),group=1
|
||||||
|
type=match,pattern=^(\d+),group=1
|
||||||
|
flavor: |
|
||||||
|
latest=false
|
||||||
|
suffix=-fpm-alpine
|
||||||
|
- name: 'Build and push latest fpm-alpine container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 5.0/fpm-alpine
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata-fpm-alpine.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata-fpm-alpine.outputs.labels }}
|
||||||
|
|||||||
103
.github/workflows/build-lts-container-images.yaml
vendored
Normal file
103
.github/workflows/build-lts-container-images.yaml
vendored
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
name: Publish LTS Container Images
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '3.*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint_dockerfiles:
|
||||||
|
name: 'Lint Dockerfile with hadolint'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
dockerfile:
|
||||||
|
- 3.0/apache/Dockerfile
|
||||||
|
- 3.0/fpm-alpine/Dockerfile
|
||||||
|
- 3.0/fpm/Dockerfile
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: hadolint/hadolint-action@v1.5.0
|
||||||
|
with:
|
||||||
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
|
ignore: DL4006 DL3008 DL3018
|
||||||
|
|
||||||
|
push_images_to_registries:
|
||||||
|
name: 'Push container images to registries'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [lint_dockerfiles]
|
||||||
|
environment: docker-build
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
contents: read
|
||||||
|
steps:
|
||||||
|
- name: 'Check out the repo'
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: 'Set up Docker Buildx'
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
with:
|
||||||
|
buildkitd-flags: --debug
|
||||||
|
- name: 'Log in to DockerHub'
|
||||||
|
if: github.event_name != 'pull_request'
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||||
|
- name: 'Apache variant metadata'
|
||||||
|
id: metadata-apache
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
docker.io/martialblog/limesurvey
|
||||||
|
tags: |
|
||||||
|
type=match,pattern=(.+),group=1
|
||||||
|
type=match,pattern=^(\d+),group=1
|
||||||
|
flavor: |
|
||||||
|
latest=false
|
||||||
|
suffix=-apache
|
||||||
|
- name: 'Build and push LTS apache container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 3.0/apache
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata-apache.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
|
|
||||||
|
- name: 'FPM variant metadata'
|
||||||
|
id: metadata-fpm
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
docker.io/martialblog/limesurvey
|
||||||
|
tags: |
|
||||||
|
type=match,pattern=(.+),group=1
|
||||||
|
type=match,pattern=^(\d+),group=1
|
||||||
|
flavor: |
|
||||||
|
latest=false
|
||||||
|
suffix=-fpm
|
||||||
|
- name: 'Build and push LTS fpm container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 3.0/fpm
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata-fpm.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
|
|
||||||
|
- name: 'FPM Alpine variant metadata'
|
||||||
|
id: metadata-fpm-alpine
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
docker.io/martialblog/limesurvey
|
||||||
|
tags: |
|
||||||
|
type=match,pattern=(.+),group=1
|
||||||
|
type=match,pattern=^(\d+),group=1
|
||||||
|
flavor: |
|
||||||
|
latest=false
|
||||||
|
suffix=-fpm-alpine
|
||||||
|
- name: 'Build and push LTS fpm-alpine container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 3.0/fpm-alpine
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.metadata-fpm-alpine.outputs.tags }}
|
||||||
|
labels: ${{ steps.metadata-apache.outputs.labels }}
|
||||||
24
.github/workflows/lint-dockerfiles.yaml
vendored
Normal file
24
.github/workflows/lint-dockerfiles.yaml
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
name: Lint Dockerfile
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
name: Lint Dockerfile with hadolint
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
dockerfile:
|
||||||
|
- 3.0/apache/Dockerfile
|
||||||
|
- 3.0/fpm-alpine/Dockerfile
|
||||||
|
- 3.0/fpm/Dockerfile
|
||||||
|
- 5.0/apache/Dockerfile
|
||||||
|
- 5.0/fpm-alpine/Dockerfile
|
||||||
|
- 5.0/fpm/Dockerfile
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: hadolint/hadolint-action@v1.5.0
|
||||||
|
with:
|
||||||
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
|
ignore: DL4006 DL3008 DL3018
|
||||||
34
.github/workflows/test-latest-container-images.yaml
vendored
Normal file
34
.github/workflows/test-latest-container-images.yaml
vendored
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
name: Test Latest Container Images
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_images:
|
||||||
|
name: Test Latest Container Images with Trivy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
context:
|
||||||
|
- apache
|
||||||
|
- fpm-alpine
|
||||||
|
- fpm
|
||||||
|
steps:
|
||||||
|
- name: 'Check out the repo'
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: 'Set up Docker Buildx'
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: 'Build Container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 5.0/${{ matrix.context }}
|
||||||
|
push: false
|
||||||
|
load: true
|
||||||
|
tags: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
||||||
|
|
||||||
|
- name: 'Run Structure tests'
|
||||||
|
uses: plexsystems/container-structure-test-action@v0.2.0
|
||||||
|
with:
|
||||||
|
image: docker.io/martialblog/limesurvey:5-${{ matrix.context }}
|
||||||
|
config: tests/${{ matrix.context }}-tests.yaml
|
||||||
34
.github/workflows/test-lts-container-images.yaml
vendored
Normal file
34
.github/workflows/test-lts-container-images.yaml
vendored
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
name: Test LTS Container Images
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_images:
|
||||||
|
name: Test LTS Container Images with Trivy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
context:
|
||||||
|
- apache
|
||||||
|
- fpm-alpine
|
||||||
|
- fpm
|
||||||
|
steps:
|
||||||
|
- name: 'Check out the repo'
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: 'Set up Docker Buildx'
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: 'Build Container images'
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: 3.0/${{ matrix.context }}
|
||||||
|
push: false
|
||||||
|
load: true
|
||||||
|
tags: docker.io/martialblog/limesurvey:3-${{ matrix.context }}
|
||||||
|
|
||||||
|
- name: 'Run Structure tests'
|
||||||
|
uses: plexsystems/container-structure-test-action@v0.2.0
|
||||||
|
with:
|
||||||
|
image: docker.io/martialblog/limesurvey:3-${{ matrix.context }}
|
||||||
|
config: tests/${{ matrix.context }}-tests.yaml
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM php:7.4-apache
|
FROM php:8.0-apache
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='3.27.25+211116'
|
ARG version='3.27.32+220119'
|
||||||
ARG sha256_checksum='91ecfecffc3a437dbb14dec19054d64f07849fe1de00a1322699bd1f50185582'
|
ARG sha256_checksum='3208785e785c2b05f12f8f4a0e6aaacb867ca22e77436dedd142290ba87ac272'
|
||||||
ARG USER=root
|
ARG USER=root
|
||||||
ARG LISTEN_PORT=80
|
ARG LISTEN_PORT=80
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM php:7.4-fpm-alpine
|
FROM php:8.0-fpm-alpine
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='3.27.25+211116'
|
ARG version='3.27.32+220119'
|
||||||
ARG sha256_checksum='91ecfecffc3a437dbb14dec19054d64f07849fe1de00a1322699bd1f50185582'
|
ARG sha256_checksum='3208785e785c2b05f12f8f4a0e6aaacb867ca22e77436dedd142290ba87ac272'
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM php:7.4-fpm
|
FROM php:8.0-fpm
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='3.27.25+211116'
|
ARG version='3.27.32+220119'
|
||||||
ARG sha256_checksum='91ecfecffc3a437dbb14dec19054d64f07849fe1de00a1322699bd1f50185582'
|
ARG sha256_checksum='3208785e785c2b05f12f8f4a0e6aaacb867ca22e77436dedd142290ba87ac272'
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM php:7.4-apache
|
FROM php:8.0-apache
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='4.6.3+210518'
|
ARG version='4.6.3+210518'
|
||||||
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM php:7.4-fpm-alpine
|
FROM php:8.0-fpm-alpine
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='4.6.3+210518'
|
ARG version='4.6.3+210518'
|
||||||
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM php:7.4-fpm
|
FROM php:8.0-fpm
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='4.6.3+210518'
|
ARG version='4.6.3+210518'
|
||||||
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
ARG sha256_checksum='3c59afc13d0cf974c465c5f851cb8837117518e94031f5e3a28ba468ad734ce2'
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM php:8-apache
|
FROM php:8.0-apache
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='5.2.2+211115'
|
ARG version='5.2.9+220110'
|
||||||
ARG sha256_checksum='61148c6131ea99a699d95117d1b53f1ba7971c609c93353e7b6221dd13515659'
|
ARG sha256_checksum='362c99a26cd787e03b470b46270ed610f4497a820b21879d1a615ab901d9dced'
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
ARG LISTEN_PORT=8080
|
ARG LISTEN_PORT=8080
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM php:8-fpm-alpine
|
FROM php:8.0-fpm-alpine
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='5.2.2+211115'
|
ARG version='5.2.9+220110'
|
||||||
ARG sha256_checksum='61148c6131ea99a699d95117d1b53f1ba7971c609c93353e7b6221dd13515659'
|
ARG sha256_checksum='362c99a26cd787e03b470b46270ed610f4497a820b21879d1a615ab901d9dced'
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
FROM php:8-fpm
|
FROM php:8.0-fpm
|
||||||
LABEL maintainer="markus@martialblog.de"
|
LABEL maintainer="markus@martialblog.de"
|
||||||
ARG version='5.2.2+211115'
|
ARG version='5.2.9+220110'
|
||||||
ARG sha256_checksum='61148c6131ea99a699d95117d1b53f1ba7971c609c93353e7b6221dd13515659'
|
ARG sha256_checksum='362c99a26cd787e03b470b46270ed610f4497a820b21879d1a615ab901d9dced'
|
||||||
ARG USER=www-data
|
ARG USER=www-data
|
||||||
|
|
||||||
# Install OS dependencies
|
# Install OS dependencies
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ if [ $PHP_UPDATEDB_EXIT_CODE -eq 0 ]; then
|
|||||||
else
|
else
|
||||||
echo ''
|
echo ''
|
||||||
echo 'Running console.php install'
|
echo 'Running console.php install'
|
||||||
php application/commands/console.php install "$ADMIN_USER" "$ADMIN_PASSWORD" "$ADMIN_NAME $ADMIN_EMAIL"
|
php application/commands/console.php install "$ADMIN_USER" "$ADMIN_PASSWORD" "$ADMIN_NAME" "$ADMIN_EMAIL"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
|||||||
@@ -87,6 +87,8 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
|
|||||||
|
|
||||||
## Traefik example
|
## Traefik example
|
||||||
|
|
||||||
|
**Hint**: if you want to deploy LimeSurvey on a sub-path (e.g. https://example.com/limesurvey) you have to set the BASE_URL and adjust the Containers Webservers. See the docker-compose Traefik example in the repository.
|
||||||
|
|
||||||
```
|
```
|
||||||
# BASE_URL = /limesurvey
|
# BASE_URL = /limesurvey
|
||||||
"traefik.http.routers.limesurvey.rule=PathPrefix(`/limesurvey`)",
|
"traefik.http.routers.limesurvey.rule=PathPrefix(`/limesurvey`)",
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ services:
|
|||||||
lime-db:
|
lime-db:
|
||||||
image: postgres:10
|
image: postgres:10
|
||||||
volumes:
|
volumes:
|
||||||
- db-data:/var/lib/postgresql
|
- db-data:/var/lib/postgresql/data
|
||||||
environment:
|
environment:
|
||||||
- "POSTGRES_USER=limesurvey"
|
- "POSTGRES_USER=limesurvey"
|
||||||
- "POSTGRES_DB=limesurvey"
|
- "POSTGRES_DB=limesurvey"
|
||||||
|
|||||||
46
docker-compose.traefik.yml
Normal file
46
docker-compose.traefik.yml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
version: "3.0"
|
||||||
|
services:
|
||||||
|
limesurvey:
|
||||||
|
build:
|
||||||
|
context: 5.0/apache/
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
labels:
|
||||||
|
traefik.enable: 'true'
|
||||||
|
traefik.http.routers.limesurvey-http-router.entrypoints: "http"
|
||||||
|
traefik.http.routers.limesurvey-http-router.rule: "PathPrefix(`/limesurvey`)"
|
||||||
|
traefik.http.services.limesurvey-service.loadbalancer.server.port: "8080"
|
||||||
|
links:
|
||||||
|
- lime-db
|
||||||
|
depends_on:
|
||||||
|
- lime-db
|
||||||
|
volumes:
|
||||||
|
# Unfortunately the StripPrefix Function in Traefik won't work;
|
||||||
|
# Meaning, we will have to set 'Alias /limesurvey "/var/www/html"' in the Apache Config
|
||||||
|
- "./examples/apache-example.conf:/etc/apache2/sites-available/000-default.conf:ro"
|
||||||
|
environment:
|
||||||
|
- "DB_HOST=lime-db"
|
||||||
|
- "DB_PASSWORD=secret"
|
||||||
|
- "ADMIN_PASSWORD=foobar"
|
||||||
|
- "PUBLIC_URL=http://localhost:8888/limesurvey"
|
||||||
|
- "BASE_URL=http://localhost:8888/limesurvey"
|
||||||
|
traefik:
|
||||||
|
image: "traefik:v2.5"
|
||||||
|
container_name: "traefik"
|
||||||
|
command:
|
||||||
|
- "--api.insecure=true"
|
||||||
|
- "--providers.docker=true"
|
||||||
|
- "--providers.docker.exposedbydefault=false"
|
||||||
|
- "--entrypoints.http.address=:8888"
|
||||||
|
ports:
|
||||||
|
- "8888:8888"
|
||||||
|
- "8080:8080"
|
||||||
|
volumes:
|
||||||
|
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
||||||
|
lime-db:
|
||||||
|
image: mysql:5.7
|
||||||
|
environment:
|
||||||
|
- "MYSQL_USER=limesurvey"
|
||||||
|
- "MYSQL_DATABASE=limesurvey"
|
||||||
|
- "MYSQL_PASSWORD=secret"
|
||||||
|
- "MYSQL_ROOT_PASSWORD=secret"
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<VirtualHost *:8080>
|
<VirtualHost *:8080>
|
||||||
ServerAdmin foo@bar.com
|
ServerAdmin foo@bar.com
|
||||||
DocumentRoot /var/www/html
|
DocumentRoot /var/www/html
|
||||||
Alias /lime "/var/www/html"
|
Alias /limesurvey "/var/www/html"
|
||||||
|
|
||||||
<Directory />
|
<Directory />
|
||||||
Options FollowSymLinks
|
Options FollowSymLinks
|
||||||
|
|||||||
Reference in New Issue
Block a user