Merge pull request #23 from lennard7001/master

New docker-compose.yml which doesn't depend on the git repo
This commit is contained in:
Markus Opolka
2020-02-15 08:22:14 +01:00
committed by GitHub

View File

@@ -0,0 +1,33 @@
version: '3'
services:
limesurvey:
image: martialblog/limesurvey:latest
restart: always
environment:
- DB_TYPE=pgsql
- DB_PORT=5432
- DB_HOST=limesurvey_db_1.limesurvey_default
- DB_PASSWORD=example
- DB_NAME=limesurvey
- DB_USERNAME=limesurvey
- ADMIN_USER=admin
- ADMIN_NAME=Admin
- ADMIN_PASSWORD=example
- ADMIN_EMAIL=admin@example.com
- PUBLIC_URL=foobar.com
volumes:
- limesurvey:/var/www/html/upload/surveys
ports:
- 8080:80
depends_on:
- db
db:
image: postgres:9.6-alpine
restart: always
environment:
- POSTGRES_USER=limesurvey
- POSTGRES_DB=limesurvey
- POSTGRES_PASSWORD=example
volumes:
limesurvey: