forked from victronenergy/venus-docker-grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-ecs.yaml
51 lines (49 loc) · 1.09 KB
/
docker-compose-ecs.yaml
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
version: '3'
services:
server:
image: "victronenergy/venus-docker-server:latest"
links:
- influxdb
volumes:
- "config-storage:/config"
ports:
- "8088:8088"
logging:
driver: awslogs
options:
awslogs-group: victron-venus
awslogs-region: us-east-1
awslogs-stream-prefix: loader
influxdb:
image: "influxdb:1.7"
ports:
- "8086:8086"
volumes:
- "influxdb-storage:/var/lib/influxdb"
environment:
- INFLUXDB_HTTP_LOG_ENABLED=false
logging:
driver: awslogs
options:
awslogs-group: victron-venus
awslogs-region: us-east-1
awslogs-stream-prefix: influxdb
grafana:
image: "victronenergy/venus-docker-grafana:latest"
links:
- influxdb
- server
volumes:
- "grafana-storage:/var/lib/grafana"
ports:
- "3000:3000"
logging:
driver: awslogs
options:
awslogs-group: victron-venus
awslogs-region: us-east-1
awslogs-stream-prefix: grafana
volumes:
influxdb-storage:
grafana-storage:
config-storage: