-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
41 lines (37 loc) · 836 Bytes
/
docker-compose.yaml
File metadata and controls
41 lines (37 loc) · 836 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
version: "3.8"
services:
backend:
image: psp0/applyhelper_backend:latest
container_name: backend
networks:
- applyhelper-network
environment:
- CHUNGYAK_INFO_API_KEY=${CHUNGYAK_INFO_API_KEY}
- JAEGER_AGENT_HOST=jaeger
- JAEGER_AGENT_PORT=6831
ports:
- "8080:8080"
frontend:
image: psp0/applyhelper_frontend:latest
container_name: frontend
ports:
- "80:80"
networks:
- applyhelper-network
depends_on:
- backend
environment:
- JAEGER_AGENT_HOST=jaeger
- JAEGER_AGENT_PORT=6831
jaeger:
image: jaegertracing/all-in-one:latest
container_name: jaeger
ports:
- "4318:4318"
- "16686:16686"
- "14268:14268"
networks:
- applyhelper-network
networks:
applyhelper-network:
driver: bridge