README.md

mozilla-iot-gateway-container

This provides the container description for the mozilla-iot-gateway

Requires

The following needs to be installed on your development system: - podman

Creation of image

To create the mozilla-iot-gateway-container image use

podman build -f Dockerfile -t mozilla-iot-gateway .

Run image

for testing purposes

Use the following command to run the image for testing purposes:

podman run --rm -it mozilla-iot-gateway /bin/bash

Run image for testing

Use the following command to run the image and access the gateway from outside

podman run -d -p 8080:8080/http mozilla-iot-gateway

This will provide you with an container <ID> which you can use with the following command to attach the container

podman exec -t -i <ID> /bin/bash