I’m trying to start a machine via the RestAPI and I’m getting back a 422 with the error:
"error": "Deploying over the remote builder is not allowed."
This here is my request body:
{
"config": {
"region": "ams",
"auto_destroy": true,
"image": "hello-world"
},
"restart": {
"policy": "no"
}
}
}
Does anybody know what this error message means? The image is just a placeholder image from the docker registry shouldn’t it already be built? If not how else could I start machines from a docker image?