-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfig.yml
More file actions
40 lines (40 loc) · 853 Bytes
/
fig.yml
File metadata and controls
40 lines (40 loc) · 853 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
grafana:
image: tutum/grafana
ports:
- "80:80"
environment:
- "HTTP_USER=admin"
- "HTTP_PASS=mypass"
- "INFLUXDB_HOST=localhost"
- "INFLUXDB_PORT=8086"
- "INFLUXDB_NAME=cadvisor"
- "INFLUXDB_USER=root"
- "INFLUXDB_PASS=root"
- "INFLUXDB_IS_GRAFANADB=true"
influxdb:
image: tutum/influxdb:latest
ports:
- "8083:8083"
- "8084:8084"
- "8086:8086"
environment:
- "PRE_CREATE_DB='cadvisor'"
cadvisor:
image: google/cadvisor:latest
ports:
- "8080:8080"
volumes:
- "/:/rootfs:ro"
- "/var/run:/var/run:rw"
- "/sys:/sys:ro"
- "/var/lib/docker/:/var/lib/docker:ro"
dockerContainerManager:
image: ahervieu/docker-manager:latest
ports:
- "8081:8081"
volumes:
- "/:/rootfs:ro"
- "/var/run:/var/run:rw"
- "/sys:/sys:ro"
- "/var/lib/docker/:/var/lib/docker:ro"
net: "host"