Docker Upload

Docker Upload

Once you're logged into the Docker registry, you'll be able to upload your Docker image to it.

Create An Algorithm

First, you need to select a name for your algorithm to be uploaded as. This is an internal-only name, only the platform and you will be able to see this name. It must only be comprised of lowercase letters and numbers. You will not be able to modify it later, though you will be able to delete this algorithm and create a new one.

Upload your Algorithm

Once you've created your algorithm, you can tag it for the registry by using this command:

docker tag <local path to your image> docker.abound.art/<docker username from authorization step>/<algorithm docker name from prior step>

And once that succeeds, perform the upload:

docker push docker.abound.art/<docker username from authorization step>/<algorithm docker name from prior step>

Next Steps

Once that is completed, you can continue on to edit the algorithm, including specifying the parameters it takes into its configuration, it's end-user facing name, and it's description.

Continue to Algorithm Editor