Skip to content

Instantly share code, notes, and snippets.

@petersem
Created July 27, 2023 08:11
Show Gist options
  • Save petersem/2e99b19ea3dac0fe4e4f78d41ef723a9 to your computer and use it in GitHub Desktop.
Save petersem/2e99b19ea3dac0fe4e4f78d41ef723a9 to your computer and use it in GitHub Desktop.
Lime Survey
limesurvey:
container_name: limesurvey
image: acspri/limesurvey
ports:
- 2020:80
environment:
LIMESURVEY_DB_HOST: limesurveydb
LIMESURVEY_DB_NAME: limesurvey
LIMESURVEY_DB_USER: limeuser
LIMESURVEY_DB_PASSWORD: LimePassword1!
LIMESURVEY_ADMIN_USER: "admin"
LIMESURVEY_ADMIN_PASSWORD: "password"
LIMESURVEY_ADMIN_NAME: "Lord Vader"
LIMESURVEY_ADMIN_EMAIL: "lord.vader@empire.com"
ENABLE_SSL: "off"
PUBLIC_URL: survey.empire.net
links:
- limesurveydb
volumes:
- ~/docker/limesurvey/plugins:/var/www/html/plugins
- ~/docker/limesurvey/upload:/var/www/html/upload
- ~/docker/limesurvey/config:/var/www/html/application/config
depends_on:
- limesurveydb
limesurveydb:
container_name: limesurveydb
image: lscr.io/linuxserver/mariadb:latest
restart: always
environment:
- PUID=1000
- PGID=1000
- TZ=Brisbane/Australia
- MYSQL_ROOT_PASSWORD=LimeRootUser!
- MYSQL_DATABASE=limesurvey
- MYSQL_USER=limeuser
- MYSQL_PASSWORD=LimePassword1!
volumes:
- ~/docker/limesurveydb:/config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment