diff --git a/developers/compute-to-data/compute-to-data-algorithms.md b/developers/compute-to-data/compute-to-data-algorithms.md
index c08b5c86..116110a7 100644
--- a/developers/compute-to-data/compute-to-data-algorithms.md
+++ b/developers/compute-to-data/compute-to-data-algorithms.md
@@ -34,7 +34,7 @@ When creating an algorithm asset in Ocean Protocol, it is essential to include t
-
Variable | Usage |
---|
image | The Docker image name the algorithm will run with. |
tag | The Docker image tag that you are going to use. |
entrypoint | The Docker entrypoint. $ALGO is a macro that gets replaced inside the compute job, depending where your algorithm code is downloaded. |
+Variable | Usage |
---|
image | The Docker image name the algorithm will run with. |
tag | The Docker image tag that you are going to use. |
entrypoint | The Docker entrypoint. $ALGO is a macro that gets replaced inside the compute job, depending where your algorithm code is downloaded. |
Define your entry point according to your dependencies. E.g. if you have multiple versions of Python installed, use the appropriate command `python3.6 $ALGO`.
@@ -97,7 +97,7 @@ Please note that when using local Providers or Metatata Caches, the ddos might n
For every algorithm pod, the Compute to Data environment provides the following environment variables:
-Variable | Usage |
---|
DIDS | An array of DID strings containing the input datasets. |
TRANSFORMATION_DID | The DID of the algorithm. |
+Variable | Usage |
---|
DIDS | An array of DID strings containing the input datasets. |
TRANSFORMATION_DID | The DID of the algorithm. |
@@ -248,13 +248,13 @@ To run this algorithm, use the following `container` object:
An asset of type `algorithm` has additional attributes under `metadata.algorithm`, describing the algorithm and the Docker environment it is supposed to be run under.
-Attribute | Type | Description |
---|
language | string | Language used to implement the software. |
version | string | Version of the software preferably in SemVer notation. E.g. 1.0.0 . |
consumerParameters | Consumer Parameters | An object that defines required consumer input before running the algorithm |
container * | container | Object describing the Docker container image. See below |
+Attribute | Type | Description |
---|
language | string | Language used to implement the software. |
version | string | Version of the software preferably in SemVer notation. E.g. 1.0.0 . |
consumerParameters | Consumer Parameters | An object that defines required consumer input before running the algorithm |
container * | container | Object describing the Docker container image. See below |
\* Required
The `container` object has the following attributes defining the Docker image for running the algorithm:
-Attribute | Type | Description |
---|
entrypoint * | string | The command to execute, or script to run inside the Docker image. |
image * | string | Name of the Docker image. |
tag * | string | Tag of the Docker image. |
checksum * | string | Digest of the Docker image. (ie: sha256:xxxxx) |
+Attribute | Type | Description |
---|
entrypoint * | string | The command to execute, or script to run inside the Docker image. |
image * | string | Name of the Docker image. |
tag * | string | Tag of the Docker image. |
checksum * | string | Digest of the Docker image. (ie: sha256:xxxxx) |
\* Required