-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
58 lines (51 loc) · 1.68 KB
/
docker-compose.yml
File metadata and controls
58 lines (51 loc) · 1.68 KB
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
services:
unreal:
image: "tensorworks/buccaneerdemo-application"
command: [ "-PixelStreamingURL=ws://127.0.0.1:8888", "-BuccaneerURL=http://127.0.0.1:8000", "-RenderOffScreen", "-Res=1920x1080" ]
container_name: unreal
network_mode: "host"
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: [gpu]
count: 1
cirrus:
image: "tensorworks/buccaneerdemo-cirrus"
container_name: cirrus
network_mode: "host"
buccaneerserver:
image: "tensorworks/buccaneerdemo-buccaneerserver"
container_name: buccaneerserver
network_mode: "host"
prometheus:
image: "prom/prometheus"
container_name: prometheus
network_mode: "host"
volumes:
- "../../Configs/prometheus.yml:/etc/prometheus/prometheus.yml"
grafana:
image: grafana/grafana
container_name: grafana
network_mode: "host"
volumes:
- "../../Configs/grafana-dashboard-config.yaml:/etc/grafana/provisioning/dashboards/grafana-dashboard-config.yaml"
- "../../Configs/grafana-datasource-config.yaml:/etc/grafana/provisioning/datasources/grafana-datasource-config.yaml"
- "../../Dashboards/:/etc/dashboards"
loki:
image: grafana/loki
container_name: loki
network_mode: "host"
volumes:
- "../../Configs/loki-local-config.yaml:/etc/loki/loki-local-config.yaml"
promtail:
image: grafana/promtail
container_name: promtail
command: -config.file=/etc/promtail/promtail-local-config.yaml
network_mode: "host"
volumes:
- "../../Configs/promtail-local-config.yaml:/etc/promtail/promtail-local-config.yaml"
- "eventslogs:/EventsServer"
volumes:
eventslogs: