The Runly Node docker image is a linux/amd64 image. In addition to the latest tag, we tag based on major, minor, and hotfix releases.

Docker Run Command

A cluster API key will need to be set as the RUNLY__APIKEY environment variable in order to be able to connect the node to your organization. Note the double underscore in the RUNLY__APIKEY environment variable.

Run the latest version:

docker run -e RUNLY__APIKEY=<API Key> -d runly/runly:latest

Or run the latest minor version of a specific major version:

docker run -e RUNLY__APIKEY=<API Key> -d runly/runly:1

Or run the latest hotfix version of a specific major.minor version:

docker run -e RUNLY__APIKEY=<API Key> -d runly/runly:1.2

Or run a specific version (major.minor.hotfix):

docker run -e RUNLY__APIKEY=<API Key> -d runly/runly:1.2.3

Learn how to run this docker container in the cloud.