Environments
Create environment
Creates a server-owned environment definition in the environment catalog. REST environment requests only accept inline Dockerfile content; local Dockerfile paths are supported by workflow/settings files but rejected by this API.
post/api/v1/environments
Request body
Example request
{
"id": "docker",
"cwd": "/srv/fabro/workspaces/team-a"
}Response
Environment created
Example response
{
"id": "docker",
"revision": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
"cwd": "/srv/fabro/workspaces/team-a"
}