Deploy with custom images
Deploying ZenML with custom Docker images.
Last updated
Was this helpful?
Deploying ZenML with custom Docker images.
Last updated
Was this helpful?
In most cases, deploying ZenML with the default zenmlhub/zenml-server
Docker image should work just fine. However, there are some scenarios when you might need to deploy ZenML with a custom Docker image:
You have implemented a custom artifact store for which you want to enable or in your dashboard.
You have forked the ZenML repository and want to deploy a ZenML server based on your own fork because you made changes to the server / database logic.
Deploying ZenML with custom Docker images is only possible for or deployments.
Here is how you can build a custom ZenML server Docker image:
Set up a container registry of your choice. E.g., as an indivial developer you could create a free account and then set up a free Docker Hub repository.
Clone ZenML (or your ZenML fork) and checkout the branch that you want to deploy, e.g., if you want to deploy ZenML version 0.41.0, run
Copy the , e.g.:
Modify the copied Dockerfile:
Add additional dependencies:
(Forks only) install local files instead of official ZenML:
Build and push an image based on your Dockerfile:
Next, adjust your preferred deployment strategy to use the custom Docker image you just built.
To use your own image, follow the general guide step by step but replace all mentions of zenmldocker/zenml-server
with your custom image reference <YOUR_CONTAINER_REGISTRY>/<IMAGE_NAME>:<IMAGE_TAG>
. E.g.:
To run the ZenML server with Docker based on your custom image, do
To use docker-compose
, adjust your docker-compose.yml
:
To use your own image, the only thing you need to do differently is to modify the image
section of your values.yaml
file:
If you want to verify your custom image locally, you can follow the section below to deploy the ZenML server locally first.
To deploy your custom image via Docker, first familiarize yourself with the general .
To deploy your custom image via Helm, first familiarize yourself with the general .