Skip to content

Commit

Permalink
feat: update dockerfiles and scripts to use ockamd version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Manuel committed Nov 7, 2020
1 parent 89b7be8 commit 3e7c841
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions tools/docker/demo/influxdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ case $1 in
influxdb-ockamd)
# start the responder (sink) end, containing `influxdb` and `ockamd`, with configuration to
# send `influxdb` measurement data via `ockamd` over HTTP.
docker run -d --network="host" --name="influxdb-ockamd" ockam/influxdb-ockamd:0.1.0 \
docker run -d --network="host" --name="influxdb-ockamd" ockam/influxdb-ockamd:0.10.0 \
--role=responder \
--local-socket=127.0.0.1:52440 \
--addon=influxdb,ockam_demo,http://localhost:8086 > /dev/null
Expand All @@ -55,7 +55,7 @@ case $1 in
--env OCKAMD_RESPONDER_PUBLIC_KEY=$2 \
--env OCKAMD_LOCAL_SOCKET=127.0.0.1:52441 \
--env OCKAMD_ROUTE=udp://127.0.0.1:52440 \
ockam/telegraf-ockamd:0.1.0 > /dev/null
ockam/telegraf-ockamd:0.10.0 > /dev/null
;;

ockam-router)
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/influxdb/Dockerfile.influxdb-ockamd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM influxdb:1.8
COPY --from=ockam/ockamd:0.1.0 /usr/local/bin/ockamd /usr/local/bin/ockamd
COPY --from=ockam/ockamd:0.10.0 /usr/local/bin/ockamd /usr/local/bin/ockamd
COPY ./tools/docker/influxdb/entrypoint.sh .
ENTRYPOINT ["./entrypoint.sh"]
3 changes: 0 additions & 3 deletions tools/docker/rust/Dockerfile.router

This file was deleted.

2 changes: 1 addition & 1 deletion tools/docker/telegraf/Dockerfile.telegraf-ockamd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM telegraf:1.16
COPY --from=ockam/ockamd:0.1.0 /usr/local/bin/ockamd /usr/local/bin/ockamd
COPY --from=ockam/ockamd:0.10.0 /usr/local/bin/ockamd /usr/local/bin/ockamd
COPY ./tools/docker/telegraf/telegraf.conf /etc/telegraf/telegraf.conf

0 comments on commit 3e7c841

Please sign in to comment.