-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
63 lines (58 loc) · 1.35 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
version: '3.8'
services:
redis:
image: redis:7-alpine
restart: unless-stopped
minio:
image: minio/minio:latest
environment:
- MINIO_ROOT_USER=myAdmin
- MINIO_ROOT_PASSWORD=myAdminPassword
command: server /data --console-address ":9001"
restart: unless-stopped
collector:
image: jaegertracing/all-in-one:1.45
restart: always
environment:
- COLLECTOR_ZIPKIN_HOST_PORT=:9411
- COLLECTOR_OTLP_ENABLED=true
ports:
- 16686:16686
rusvid:
build:
context: .
dockerfile: Dockerfile.server
image: rusvid_server:latest
ports:
- 8080:8080
- 8085:8085
restart: unless-stopped
links:
- redis
- minio
- collector
environment:
- STORAGE_URL=minio:9000
- REDIS_URL=redis
- EXPORTER_URL=http://collector:4317
- OTEL_SERVICE_NAME=rusvid_server
depends_on:
- redis
- minio
- config
- collector
config:
build:
context: ./rusvid_server
dockerfile: Dockerfile.minio_conf
image: rusvid_config:latest
environment:
- STORAGE_URL=http://minio:9000
- STORAGE_ROOT_USER=myAdmin
- STORAGE_ROOT_PASSWORD=myAdminPassword
- STORAGE_ACCESS_KEY=access_key_123
- STORAGE_SECRET_KEY=access_secret_key_123
links:
- minio
depends_on:
- minio