-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
80 lines (73 loc) · 1.8 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
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
version: '3.7'
services:
landing:
image: ghcr.io/xai-demonstrator/landing-page-service:latest
depends_on:
- inspection
- sentiment
- country
expose:
- 80
environment:
- VIRTUAL_HOST=test.xaidemo.de
- VIRTUAL_PORT=80
- LETSENCRYPT_HOST=test.xaidemo.de
- LETSENCRYPT_EMAIL=xai.demonstrator@gmail.com
restart: always
sentiment:
image: ghcr.io/xai-demonstrator/review-sentiment-service:latest
depends_on:
- jaeger
expose:
- 8000
environment:
- ROOT_PATH=/api/sentiment
- SERVICE_NAME=sentiment-service
- TRACING_EXPORTER=jaeger
- JAEGER_AGENT_HOST_NAME=jaeger
inspection:
image: ghcr.io/xai-demonstrator/visual-inspection-service:latest
depends_on:
- jaeger
expose:
- 8000
environment:
- ROOT_PATH=/api/inspection
- SERVICE_NAME=inspection-service
- TRACING_EXPORTER=jaeger
- JAEGER_AGENT_HOST_NAME=jaeger
country:
image: ghcr.io/xai-demonstrator/guess-the-country-service:latest
depends_on:
- jaeger
expose:
- 8000
environment:
- ROOT_PATH=/api/country
- SERVICE_NAME=country-service
- TRACING_EXPORTER=jaeger
- JAEGER_AGENT_HOST_NAME=jaeger
- GOOGLE_MAPS_API_TOKEN=${STREETVIEW_API_KEY}
- BATCH_SIZE=${BATCH_SIZE}
education:
image: ghcr.io/xai-demonstrator/digital-education-service:latest
depends_on:
- jaeger
expose:
- 8000
environment:
- ROOT_PATH=/api/education
- SERVICE_NAME=education-service
- TRACING_EXPORTER=jaeger
- JAEGER_AGENT_HOST_NAME=jaeger
jaeger:
image: jaegertracing/all-in-one
expose:
- 6831
ports:
- "16686:16686"
restart: always
networks:
default:
external:
name: nginx-proxy