Containerised version of LimeSurvey prepared to connect with postgres database.
135
Forked from danturner/limesurvey
LimeSurvey - the most popular Free Open Source Software survey tool on the web.
https://www.limesurvey.org/en/
Containerised version of LimeSurvey that does NOT package Database in the same container. Prepared to connect with postgres database
To run limesurvey in 80 port just:
docker run -d --name limesurvey -p 80:80 decsis/docker-limesurvey:latest
You are ready to go.
You can use docker compose to automate the above command if you create a file called docker-compose.yml and put in there the following:
version: '2'
services:
db:
image: 'postgres:9.6.2-alpine'
environment:
- POSTGRES_PASSWORD=654321
expose:
- '5432'
lime:
image: 'decsis/docker-limesurvey'
links:
- db
ports:
- '80:80'
And run:
docker-compose up -d
Content type
Image
Digest
Size
240.6 MB
Last updated
over 9 years ago
docker pull decsis/limesurvey:v1.0