Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions blueprints/limesurvey/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: "3.8"

services:
db:
image: mariadb:10.11
restart: always
volumes:
- db_data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=limesurvey
- MYSQL_USER=limesurvey
- MYSQL_PASSWORD=${MYSQL_PASSWORD}

limesurvey:
image: martialblog/limesurvey:latest
restart: always
volumes:
- limesurvey_upload:/var/www/html/upload
environment:
- ADMIN_EMAIL=${ADMIN_EMAIL}
- ADMIN_NAME=Admin
- ADMIN_USER=admin
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
- DB_HOST=db
- DB_MYSQL_ENGINE=InnoDB
- DB_NAME=limesurvey
- DB_PASSWORD=${MYSQL_PASSWORD}
- DB_USERNAME=limesurvey
- DEBUG=0
- DEBUG_SQL=0
- PUBLIC_URL=${PUBLIC_URL}
- SHOW_SCRIPT_NAME=false
- URL_FORMAT=path
depends_on:
- db

volumes:
db_data:
limesurvey_upload:
38 changes: 38 additions & 0 deletions blueprints/limesurvey/limesurvey.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions blueprints/limesurvey/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[variables]
main_domain = "${domain}"
mysql_root_password = "${password:32}"
mysql_user_password = "${password:32}"
admin_email = "${email}"
admin_password = "${password:32}"

[config]
[[config.domains]]
serviceName = "limesurvey"
port = 8080
host = "${main_domain}"

[config.env]
PUBLIC_URL = "http://${main_domain}"
ADMIN_EMAIL = "${admin_email}"
ADMIN_PASSWORD = "${admin_password}"
MYSQL_PASSWORD = "${mysql_user_password}"
MYSQL_ROOT_PASSWORD = "${mysql_root_password}"
17 changes: 17 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3641,6 +3641,23 @@
"language"
]
},
{
"id": "limesurvey",
"name": "LimeSurvey",
"version": "6.17.2+260507",
"description": "LimeSurvey is a powerful, open-source survey platform, making it simple to create online surveys and forms with unmatched flexibility.",
"logo": "limesurvey.svg",
"links": {
"github": "https://github.com/LimeSurvey/LimeSurvey",
"website": "https://www.limesurvey.org",
"docs": "https://www.limesurvey.org/manual/"
},
"tags": [
"forms",
"questionnaire",
"survey"
]
},
{
"id": "linkding",
"name": "Linkding",
Expand Down
Loading