-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (38 loc) · 898 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (38 loc) · 898 Bytes
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
42
43
44
45
46
47
48
49
50
services:
testlink:
image: imtnd/testlink
platform: linux/amd64
container_name: testlink
depends_on:
- mariadb
ports:
- '8080:80'
restart: unless-stopped
environment:
TL_TESTLINK_FIRST_RUN: '1'
DB_TYPE: mysqli
DB_HOST: mariadb
DB_NAME: testlink
DB_USER: testlink
DB_PASSWORD: testlinkpass
volumes:
- testlink_data:/var/www/html
mariadb:
image: mariadb:10.3
platform: linux/amd64
container_name: testlink-mysql
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: rootpass
MYSQL_DATABASE: testlink
MYSQL_USER: testlink
MYSQL_PASSWORD: testlinkpass
command: --character-set-server=utf8
--collation-server=utf8_general_ci
ports:
- '3306:3306'
volumes:
- mysql_data:/var/lib/mysql
volumes:
mysql_data:
testlink_data: