Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The basis of the requirements came out of looking at how others have solved this challenge. 

Azure IoT Edge

Azure IoT Edge is organized around independently configured modules (aka containers) that are grouped to form a solution. Each module is described independently and then combined into a solution with a deployment manifest. 

Code Block
titlemodule.json
{
  "$schema-version": "0.0.1",
  "description": "RedisEdge",
  "image": {
    "repository": "$CONTAINER_REGISTRY_ADDRESS/redis-edge",
    "tag": {
      "version": "1.0.0",
      "platforms": {
        "amd64": "./Dockerfile.amd64",
        "arm32v7": "./Dockerfile.arm32v7",
        "arm64v8": "./Dockerfile.arm64v8"
    }
  },
  "buildOptions": []
  },
  "language": "javascript"
}