-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (33 loc) · 1.05 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: '3'
networks:
bibbox-default-network:
external: true
services:
limesurvey:
image: bibbox/limesurvey:latest
restart: on-failure #usually needs 1 restart until db is fully initialized
container_name: limesurvey
ports:
- 8082:80
environment:
LIMESURVEY_DB_PASSWORD: limesurvey
LIMESURVEY_DB_HOST: mysql:3306
LIMESURVEY_ADMIN_USER: admin
LIMESURVEY_ADMIN_PASSWORD: admin
LIMESURVEY_ADMIN_NAME: admin
LIMESURVEY_ADMIN_EMAIL: [email protected]
volumes:
- ./plugins:/var/www/html/plugins
- ./upload:/var/www/html/upload
- ./config:/var/www/html/application/config
networks:
- bibbox-default-network
mysql:
image: mariadb
container_name: mysql
environment:
MYSQL_ROOT_PASSWORD: limesurvey
volumes:
- ./database/mysql:/var/lib/mysql
networks:
- bibbox-default-network