-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
86 lines (82 loc) · 2.29 KB
/
docker-compose.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
volumes:
gitb-repo:
gitb-dbdata:
services:
# THESE SERVICES ARE ALL RELATED TO TESTBED
gitb-redis:
image: redis:7.2.5
container_name: itb-redis
restart: unless-stopped
gitb-mysql:
image: isaitb/gitb-mysql
container_name: itb-mysql
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=CHANGE_ME
- MYSQL_PASSWORD=CHANGE_ME
volumes:
- gitb-dbdata:/var/lib/mysql
healthcheck:
test: "/usr/bin/mysql --user=root --password=$$MYSQL_ROOT_PASSWORD --execute \"SHOW DATABASES;\""
interval: 3s
retries: 20
gitb-srv:
image: isaitb/gitb-srv
container_name: itb-srv
restart: unless-stopped
environment:
# The root URL at which callbacks are made from custom test services or when receiving calls using
# built-in messaging handlers. If you don't use built-in messaging handlers and all custom test
# services are internal, you can adapt this URL to also be internal.
- HMAC_KEY=CHANGE_ME
ports:
- "8080:8080"
gitb-ui:
image: isaitb/gitb-ui
container_name: itb-ui
restart: unless-stopped
ports:
- "9000:9000"
environment:
- THEME=gitb
- DB_DEFAULT_PASSWORD=CHANGE_ME
- HMAC_KEY=CHANGE_ME
- AUTOMATION_API_ENABLED=true
volumes:
- gitb-repo:/gitb-repository
depends_on:
gitb-redis:
condition: service_started
gitb-mysql:
condition: service_healthy
gitb-srv:
condition: service_started
graphdb:
image: ontotext/graphdb:10.6.4
container_name: graphdb
restart: always
environment:
JAVA_OPTS: "-Xmx4g -Xms4g"
ports:
- "7200:7200"
ldio-workbench:
image: ldes/ldi-orchestrator:2.10.0-SNAPSHOT
container_name: ldio-workbench
healthcheck:
test: ["CMD", "wget", "-qO-", "http://ldio-workbench:8080/actuator/health"]
interval: 12s
timeout: 3s
retries: 12
ports:
- "8888:8080"
testbed-shacl-validator:
image: ghcr.io/informatievlaanderen/testbed-shacl-validator:20241113094029
depends_on:
graphdb:
condition: service_started
ldio-workbench:
condition: service_healthy
environment:
- LDIO_HOST=http://ldio-workbench:8080
- LDIO_SPARQLHOST=http://graphdb:7200
- SERVER_PORT=8080