forked from quickwit-oss/quickwit-datasource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
36 lines (33 loc) · 782 Bytes
/
docker-compose.yaml
File metadata and controls
36 lines (33 loc) · 782 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
version: '3.0'
services:
quickwit:
image: quickwit/quickwit:edge
environment:
- OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://localhost:7281
- QW_ENABLE_OPENTELEMETRY_OTLP_EXPORTER=true
command: ["run"]
networks:
- quickwit
ports:
- 7280:7280/tcp
grafana:
container_name: 'grafana-quickwit-datasource'
build:
context: ./.config
args:
grafana_version: 11.6.3
ports:
- 3000:3000/tcp
volumes:
- ./:/var/lib/grafana/plugins/grafana-quickwit-datasource
- ./provisioning:/etc/grafana/provisioning
- gquickwit:/var/lib/grafana
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- quickwit
networks:
quickwit:
driver: bridge
volumes:
gquickwit: