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

idstring required
provider'local' | 'docker' | 'daytona' required

Desired environment provider.

cwdstring nullable

Local-provider command working directory for this environment. Docker and Daytona ignore this value.

labelsStringMap required
envobject required

Example request

{
  "id": "docker",
  "cwd": "/srv/fabro/workspaces/team-a"
}

Response

Environment created

idstring required
revisionstring required

Stable revision used with If-Match for optimistic concurrency.

provider'local' | 'docker' | 'daytona' required

Desired environment provider.

cwdstring nullable

Local-provider command working directory for this environment. Docker and Daytona ignore this value.

labelsStringMap required
envobject required

Example response

{
  "id": "docker",
  "revision": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
  "cwd": "/srv/fabro/workspaces/team-a"
}

Changes

Changed in 3 of the 134 revisions of this API.113

    • added the new optional request property cwd

      new-optional-request-property

    • added the optional property cwd to the response with the 201 status

      response-optional-property-added

  • de85d055604011See the full diff
    • removed the required property volumes from the response with the 201 status

      response-required-property-removed

    • removed the request property volumes

      request-property-removed

    This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • endpoint added

      endpoint-added