-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.localapp.yml
56 lines (52 loc) · 1.54 KB
/
docker-compose.localapp.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
services:
telegraf:
image: telegraf:1.13-alpine
networks:
tarantool_dashboard_dev:
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
# configure telegraf to work out of the box
- ./example_cluster/telegraf/telegraf.localapp.conf:/etc/telegraf/telegraf.conf:ro
influxdb:
image: influxdb:1.7-alpine
environment:
INFLUXDB_REPORTING_DISABLED: "true"
INFLUXDB_DB: "metrics"
INFLUXDB_ADMIN_USER: "admin"
INFLUXDB_ADMIN_PASSWORD: "admin"
INFLUXDB_USER: "telegraf"
INFLUXDB_USER_PASSWORD: "telegraf"
INFLUXDB_HTTP_AUTH_ENABLED: "true"
networks:
tarantool_dashboard_dev:
ports:
- 8086:8086
prometheus:
image: prom/prometheus:v2.53.1
networks:
tarantool_dashboard_dev:
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- 9090:9090
volumes:
- ./example_cluster/prometheus/prometheus.localapp.yml:/etc/prometheus/prometheus.yml
- ./example_cluster/prometheus/alerts.yml:/etc/prometheus/alerts.yml
grafana:
image: grafana/grafana:11.2.2
environment:
GF_SECURITY_DISABLE_INITIAL_ADMIN_CREATION: "true"
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: "Admin"
GF_AUTH_DISABLE_SIGNOUT_MENU: "true"
GF_AUTH_DISABLE_LOGIN_FORM: "true"
networks:
tarantool_dashboard_dev:
ports:
- 3000:3000
volumes:
- ./example_cluster/grafana/provisioning:/etc/grafana/provisioning
networks:
tarantool_dashboard_dev:
driver: bridge