-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
58 lines (52 loc) · 989 Bytes
/
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
networks:
gokit:
services:
prometheus:
image: prom/prometheus
volumes:
- ./prometheus-config.yml:/etc/prometheus/prometheus-config.yml
command:
- '--config.file=/etc/prometheus/prometheus-config.yml'
- '--storage.tsdb.path=/prometheus'
ports:
- 9090:9090
networks:
- gokit
grafana:
image: grafana/grafana-enterprise
ports:
- 3000:3000
networks:
- gokit
priceapi:
build:
context: .
dockerfile: api.Dockerfile
ports:
- 8080:8080
networks:
- gokit
priceservice01:
build:
context: .
dockerfile: service.Dockerfile
ports:
- 8081:8080
networks:
- gokit
priceservice02:
build:
context: .
dockerfile: service.Dockerfile
ports:
- 8082:8080
networks:
- gokit
priceservice03:
build:
context: .
dockerfile: service.Dockerfile
ports:
- 8083:8080
networks:
- gokit