Create professional questionnaires and polls quickly with a highly customizable, open-source platform. Whether conducting market research or gathering customer feedback, you get everything needed to design engaging forms without technical expertise. Start from scratch or choose from over 800 pre-designed templates to get your project off the ground in minutes.
Enjoy complete control over your brand identity by applying custom fonts, colors, and logos. Reaching your audience is simple with flexible sharing options, including direct links, QR codes, and website embedding.
Key features include:
services:
limesurvey:
image: adamzammit/limesurvey:latest
restart: always
ports:
- "${APP_PORT:-8080}:80"
volumes:
- ./upload:/var/www/html/upload
- ./plugins:/var/www/html/plugins
environment:
- DB_HOST=db
- DB_NAME=${DB_NAME}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- ADMIN_USER=${ADMIN_USER}
- ADMIN_PASSWORD=${ADMIN_PASSWORD}
- ADMIN_NAME=${ADMIN_NAME}
- ADMIN_EMAIL=${ADMIN_EMAIL}
- DEBUG=0
depends_on:
- db
db:
image: mariadb:10.6
restart: always
volumes:
- ./db_data:/var/lib/mysql
environment:
- MYSQL_DATABASE=${DB_NAME}
- MYSQL_USER=${DB_USER}
- MYSQL_PASSWORD=${DB_PASSWORD}
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}APP_PORT=8080
# Database Configuration
DB_NAME=limesurvey
DB_USER=limesurvey
DB_PASSWORD=secure_database_password
DB_ROOT_PASSWORD=secure_root_password
# LimeSurvey Admin Configuration
ADMIN_USER=admin
ADMIN_PASSWORD=secure_admin_password
ADMIN_NAME=Admin User
ADMIN_EMAIL=admin@example.comAuto-fetched 15 minutes ago
Auto-fetched 15 minutes ago