-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
37 lines (34 loc) · 876 Bytes
/
docker-compose.yaml
File metadata and controls
37 lines (34 loc) · 876 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
version: '3.0'
services:
quickwit:
image: quickwit/quickwit:${QUICKWIT_VERSION:-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: ${GRAFANA_VERSION:-12.4.0}
grafana_image: ${GRAFANA_IMAGE:-grafana-oss}
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: