-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (39 loc) · 846 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (39 loc) · 846 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
version: "3"
services:
influx:
image: influxdb:2.7-alpine
restart: unless-stopped
ports:
- 8086:8086
volumes:
- influxdb:/var/lib/influxdb2
environment:
DOCKER_INFLUXDB_INIT_USERNAME: speedy
DOCKER_INFLUXDB_INIT_PASSWORD: speedy1234
DOCKER_INFLUXDB_INIT_ORG: speedy
DOCKER_INFLUXDB_INIT_BUCKET: network-speeds
DOCKER_INFLUXDB_INIT_RETENTION: 8w
networks:
- speedy
grafana:
image: grafana/grafana:10.2.0
restart: unless-stopped
ports:
- 3000:3000
networks:
- speedy
volumes:
- grafana:/var/lib/grafana
environment:
GF_LOG_MODE: "console"
GF_LOG_LEVEL: "info"
GF_FEATURE_TOGGLES_ENABLE: ""
depends_on:
- influx
volumes:
influxdb:
grafana:
networks:
speedy:
name: speedy
driver: bridge