Skip to content

Commit

Permalink
fix(examples): use properly tagged docker images in example compose f…
Browse files Browse the repository at this point in the history
…iles
  • Loading branch information
mman committed Jul 19, 2024
1 parent e1411dc commit 6c5458b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions examples/docker-compose-ecs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
loader:
image: "victronenergy/venus-influx-loader:main"
image: "victronenergy/venus-influx-loader:1.1.0"
links:
- influxdb
volumes:
Expand All @@ -10,7 +10,7 @@ services:
- "8088:8088"
logging:
driver: awslogs
options:
options:
awslogs-group: victron-venus
awslogs-region: us-east-1
awslogs-stream-prefix: loader
Expand All @@ -24,12 +24,12 @@ services:
- INFLUXDB_HTTP_LOG_ENABLED=false
logging:
driver: awslogs
options:
options:
awslogs-group: victron-venus
awslogs-region: us-east-1
awslogs-stream-prefix: influxdb
grafana:
image: "victronenergy/venus-grafana:main"
image: "victronenergy/venus-grafana:1.1.0"
links:
- influxdb
- loader
Expand All @@ -39,11 +39,11 @@ services:
- "3000:3000"
logging:
driver: awslogs
options:
options:
awslogs-group: victron-venus
awslogs-region: us-east-1
awslogs-stream-prefix: grafana

volumes:
influxdb-storage:
grafana-storage:
Expand Down
8 changes: 4 additions & 4 deletions examples/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: '3.4'
services:
loader:
image: "victronenergy/venus-influx-loader:develop"
image: "victronenergy/venus-influx-loader:1.1.0"
command: [ "bin/venus-influx-loader", "--enable-discovery-api" ]
ports:
- "8088:8088"
volumes:
- "config-storage:/config"
browser:
image: "victronenergy/venus-influx-loader:develop"
image: "victronenergy/venus-influx-loader:1.1.0"
command: [ "bin/venus-upnp-browser", "--discovery-api", "http://localhost:8088/discovery-api/" ]
# `network_mode: host` is required for the `venus-upnp-browser` to access your host network
# and audo discover Venus devices.
Expand All @@ -22,15 +22,15 @@ services:
environment:
- INFLUXDB_HTTP_LOG_ENABLED=false
grafana:
image: "victronenergy/venus-grafana:develop"
image: "victronenergy/venus-grafana:1.1.0"
volumes:
- "grafana-storage:/var/lib/grafana"
ports:
- "3000:3000"
environment:
- VIL_INFLUXDB_URL=http://influxdb:8086
- VIL_GRAFANA_API_URL=http://loader:8088/grafana-api

volumes:
influxdb-storage:
grafana-storage:
Expand Down

0 comments on commit 6c5458b

Please sign in to comment.