Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions armv6-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ done

if [ -z ${PI_HOST} ] && [ -z ${PI_USER} ]; then echo "neither host nor username is set" && exit 1; fi
if [ -z ${PI_HOST} ] || [ -z ${PI_USER} ]; then echo "both host and username need to be set" && exit 1; fi
if [ -z ${HUB_IP_OR_HOST} ]; then echo "you need to use the -r flag, see -h for more info" && exit 1; fi
if [ -n "$INSTALL" ]; then echo "going to install telelgraf"; fi
[ -z ${HUB_IP_OR_HOST} ] && echo "you need to use the -r flag, see -h for more info" && exit 1;
[ -n "$INSTALL" ] && echo "going to install telelgraf";

PI_USER_AT_HOST="${PI_USER}@${PI_HOST}"

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
influxdb:
image: influxdb
image: influxdb:1.8.4
ports:
- "8086:8086"
networks:
Expand All @@ -15,7 +15,7 @@ services:
restart: unless-stopped

kapacitor:
image: kapacitor
image: kapacitor:1.5.8
ports:
- "9092:9092"
networks:
Expand Down