Custom Deployment Containers

Gradient provides the ability to use any public or private Docker container. There are several parameters that can be used to maximize the flexibility of this managed service.

Parameters

Running Custom Container from Private Registry

To run a custom container on a private registry, you need to specify the following fields:

Populate the Container Name, Image Server, Registry Username, Registry Password fields (plus any other optional fields) to pull a container from your private registry.

Example of running a flask server using the deployments CLI

gradient deployments create 
--deploymentType Custom 
-name "flaskserver" 
--machineType c5.xlarge 
--imageUrl tiangolo/uwsgi-nginx-flask 
--instanceCount 1 
--clusterId <someCluster>
--port 80:8080

Last updated