-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
68 lines (68 loc) · 1.34 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
version: "3.4"
services:
videos-web:
container_name: videos-web
image: jaskeerat/website:v1
build:
context: ./website/
ports:
- 80:80
networks:
- tracing
playlists-api:
container_name: playlists-api
image: jaskeerat/playlist-api:v1
build:
context: ./playlist-api
environment:
- "ENVIRONMENT=DEBUG"
- "REDIS_HOST=playlists-db"
- "REDIS_PORT=6379"
- "JAEGER_HOST_PORT=jaeger:6831"
ports:
- 81:10010
networks:
- tracing
playlists-db:
container_name: playlists-db
image: redis:6.0-alpine
command: [ "redis-server"]
ports:
- 6379:6379
networks:
- tracing
videos-api:
container_name: videos-api
image: jaskeerat/video-api:v1
build:
context: ./video-api
environment:
- "ENVIRONMENT=DEBUG"
- "REDIS_HOST=videos-db"
- "REDIS_PORT=6379"
- "JAEGER_HOST_PORT=jaeger:6831"
#- "DELAY=true"
#- "FLAKY=true"
ports:
- 82:10010
networks:
- tracing
videos-db:
container_name: videos-db
image: redis:6.0-alpine
command: [ "redis-server"]
ports:
- 6380:6379
networks:
- tracing
jaeger:
container_name: jaeger
image: jaegertracing/all-in-one:latest
networks:
- tracing
ports:
- 16686:16686
- 14269:14269
networks:
tracing:
name: tracing