-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
54 lines (49 loc) · 987 Bytes
/
docker-compose.yaml
File metadata and controls
54 lines (49 loc) · 987 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
42
43
44
45
46
47
48
49
50
51
52
53
54
version: "3.9"
services:
ray_serve:
build: .
ports:
- "8000:8000" # FastAPI endpoints
- "8080:8080" # Metrics collection
- "8256:8256" # Ray dashboard
environment:
USE_RAY: "True"
links:
- fluentd
logging:
driver: "fluentd"
options:
fluentd-address: localhost:24224
prometheus:
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
image: "prom/prometheus"
grafana:
ports:
- "3000:3000"
image: "grafana/grafana:latest"
links:
- "prometheus"
fluentd:
image: "fluent/fluentd"
volumes:
- ./fluentd/conf:/fluentd/etc
links:
- "elasticsearch"
ports:
- "24224:24224"
- "24224:24224/udp"
elasticsearch:
image: "elasticsearch:6.5.0"
expose:
- 9200
ports:
- "9200:9200"
kibana:
image: "kibana:7.10.1"
links:
- "elasticsearch"
ports:
- "5601:5601"