Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.01 KB

README.md

File metadata and controls

37 lines (25 loc) · 1.01 KB

LTD IoT Gateway Containers

Quick start

On a fresh image (capable of running docker), run the following commands to bootstrap your LTD IoT Gateway environment:

Bluetooth LE 6LoWPAN Joiner

docker run --restart=always -d -t --privileged --net=host --tmpfs=/run:rw,mode=755 --tmpfs=/run/lock --name bt-joiner linarotechnologies/bt-joiner:latest-arm64

Tinyproxy (IPv6 -> IPv4)

Use --add-host to specify the local address of the hawkBit container:

docker run --restart=always -d -t --net=host --add-host=gitci.com:192.168.1.10 --name tinyproxy linarotechnologies/tinyproxy:latest-arm64

IBM Bluemix Mosquitto

Create the authentication keys file:

$ cat ~/ibm-bluemix-mosquitto.env
BLUEMIX_AUTHKEY=a-org-authkey
BLUEMIX_AUTHTOKEN=auth-token
BLUEMIX_ORG=bluemix-org
GW_DEVICE_TYPE=hikey

Start the container:

docker run --restart=always -d -t --net=host --env-file=/home/linaro/ibm-bluemix-mosquitto.env --name ibm-bluemix-mosquitto linarotechnologies/ibm-bluemix-mosquitto:latest-arm64