{"id":21018385,"url":"https://github.com/giabar/gb-limesurvey","last_synced_at":"2026-04-09T18:45:28.820Z","repository":{"id":177269972,"uuid":"157841108","full_name":"giabar/gb-limesurvey","owner":"giabar","description":"LimeSurvey Docker image - https://hub.docker.com/r/giabar/gb-limesurvey/","archived":false,"fork":false,"pushed_at":"2018-12-13T08:46:52.000Z","size":23,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-20T12:32:51.640Z","etag":null,"topics":["apache","apache-httpd","docker","docker-compose","docker-image","limesurvey","mariadb","php","php7"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/giabar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-16T09:06:14.000Z","updated_at":"2021-11-12T23:59:29.000Z","dependencies_parsed_at":"2023-07-20T03:00:26.990Z","dependency_job_id":null,"html_url":"https://github.com/giabar/gb-limesurvey","commit_stats":null,"previous_names":["giabar/gb-limesurvey"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giabar%2Fgb-limesurvey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giabar%2Fgb-limesurvey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giabar%2Fgb-limesurvey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/giabar%2Fgb-limesurvey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/giabar","download_url":"https://codeload.github.com/giabar/gb-limesurvey/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243447638,"owners_count":20292453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache","apache-httpd","docker","docker-compose","docker-image","limesurvey","mariadb","php","php7"],"created_at":"2024-11-19T10:25:19.922Z","updated_at":"2025-12-25T18:47:53.612Z","avatar_url":"https://github.com/giabar.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LimeSurvey Docker image\n_Docker base image: php:7.2.12-apache-stretch_\n\n[![DockerPulls](https://img.shields.io/docker/pulls/giabar/gb-limesurvey.svg)](https://registry.hub.docker.com/u/giabar/gb-limesurvey/)\n[![DockerStars](https://img.shields.io/docker/stars/giabar/gb-limesurvey.svg)](https://registry.hub.docker.com/u/giabar/gb-limesurvey/)\n\nLimesurvey is the number one open-source survey software.\n\nAdvanced features like branching and multiple question types make it a valuable partner for survey-creation.\n\nOfficial web site: https://www.limesurvey.org\n\n## Try online\n\nYou can try it online! Click the below button:\n\n[![Try in PWD](https://raw.githubusercontent.com/play-with-docker/stacks/master/assets/images/button.png)](https://labs.play-with-docker.com/?stack=https://raw.githubusercontent.com/giabar/gb-limesurvey/master/docker-compose.yml)\n\n## Requirements\n\n* Docker CE \u003e= 17.06.* ( [Ubuntu installation script](https://gist.github.com/giabar/9c04cea19746c036ba5d9357eb47751a) / [CentOS installation script](https://gist.github.com/giabar/ac77abc295c0fb8ddcd646533207fe80) )\n* Docker Compose \u003e= 1.22.* ( [installation script](https://gist.github.com/giabar/f966aaecd84cbbce363214065c90ae0b) )\n* MariaDB/MySQL server\n\n\n## Quick start locally\n```\ngit clone https://github.com/giabar/gb-limesurvey\ncd gb-limesurvey\ndocker-compose up -d\n```\n\nMore details in [https://github.com/giabar/gb-limesurvey/blob/master/docker-compose.yml](docker-compose.yml)\n\n\n## External database\n\nYou have to specify your sql hostname and credentials using specific variables:\n\n```\ndocker run \\\n  -d \\\n  -p 8080:80 \\\n  -v /tmp/lime/upload:/var/www/html/upload \\\n  --name=limesurvey \\\n  --link=mydb \\\n  -e LIMESURVEY_DB_HOST=sql-server-hostname \\\n  -e LIMESURVEY_DB_USER=sql-username \\\n  -e LIMESURVEY_DB_PASSWORD=sql-password \\\n  -e LIMESURVEY_DB_NAME=sql-database-name \\\n  giabar/gb-limesurvey\n```\n\n## LimeSurvey with SSL\n\nChange ServerName in default-ssl.conf with your host FQDN, then change cert and key file name:\n\n```\n                SSLCertificateFile      /etc/ssl/certs/server.crt\n                SSLCertificateKeyFile /etc/ssl/private/server.key\n```\n\nPut your server.crt and server.key in the same folder of docker-compose-ssl.yml and then:\n\n```\ndocker-compose -f docker-compose-ssl.yml up -d\n```\n\n\n## Environment variables\n\n```\n-e LIMESURVEY_DB_HOST=... (defaults to the IP and port of the linked mysql container)\n-e LIMESURVEY_DB_USER=... (defaults to \"root\")\n-e LIMESURVEY_DB_PASSWORD=... (defaults to the value of the MYSQL_ROOT_PASSWORD environment variable from the linked mysql container)\n-e LIMESURVEY_DB_NAME=... (defaults to \"limesurvey\")\n-e LIMESURVEY_TABLE_PREFIX=... (defaults to \"\" - set this to \"lime_\" for example if your database has a prefix)\n-e LIMESURVEY_ADMIN_USER=... (defaults to \"\" - the username of the Limesurvey administrator)\n-e LIMESURVEY_ADMIN_PASSWORD=... (defaults to \"\" - the password of the Limesurvey administrator)\n-e LIMESURVEY_ADMIN_NAME=... (defaults to \"Lime Administrator\" - The full name of the Limesurvey administrator)\n-e LIMESURVEY_ADMIN_EMAIL=... (defaults to \"lime@lime.lime\" - The email address of the Limesurvey administrator)\n-e LIMESURVEY_DEBUG=... (defaults to 0 - Debug level of Limesurvey, 0 is off, 1 for errors, 2 for strict PHP and to be able to edit standard templates)\n-e LIMESURVEY_SQL_DEBUG=... (defaults to 0 - Debug level of Limesurvey for SQL, 0 is off, 1 is on - note requires LIMESURVEY_DEBUG set to 2)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiabar%2Fgb-limesurvey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgiabar%2Fgb-limesurvey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgiabar%2Fgb-limesurvey/lists"}