Enable Container Services
To use custom containers on your clusters, a workspace administrator must enable Databricks Container Services.
Workspace admins can enable Databricks Container Service using the Workspace configuration API. In a JSON request body, specify enableDcs
to true
, as in the following example:
curl -X PATCH -n \
https://<databricks-instance>/api/2.0/workspace-conf \
-d '{
"enableDcs": "true"
}'