Docker Image Implementation
Last updated
Last updated
Any standard Docker image can be executed on the Orbs Network. The image must adhere to certain requirements to support efficient orchestration by the protocol.
The most important part of a Docker image is the . Orbs VM supports the standard file format as interpreted by orchestrators like .
To make sure your image as efficient as possible, be sure to follow the . It is recommended to base your docker image on the official .
To be a good citizen on the image orchestration protocol, your image must respond to queries. When an image fails to respond to health check with an appropriate exit code, it will be restarted. Images that fail to eventually start and reach a healthy state are at risk of non execution.
To support monitoring by the community, your service should maintain a local file that shares its current status with the outside world. The contents of this file are publicly available from every node running the service via the .
The following Dockerfile example creates a Node.js service based on Alpine Linux. The service uses a shell script that executes a Node.js script for performing the health check and updating status.json
periodically.