Home
Version 3
Apps API

Apps API

Creating a Docker App (experimental)

POST /v2/apps/

Request

Route

POST /v2/apps

Body

Name Description Default Valid Values Example Values
name The name of the app.
  • my_super_app
memory The amount of memory each instance should have. In megabytes.
  • 1024
  • 512
instances The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
  • 2
  • 6
  • 10
disk_quota The maximum amount of disk available to an instance of an app. In megabytes.
  • 1204
  • 2048
space_guid The guid of the associated space.
  • guid-4b24cf94-9a7b-41d3-9bff-5c08e54709e4
stack_guid The guid of the associated stack. Uses the default system stack.
  • guid-c812ec16-eb81-43d4-ab69-64d346b37815
state The current desired state of the app. One of STOPPED or STARTED. STOPPED
  • STOPPED
  • STARTED
detected_start_command The command detected by the buildpack during staging.
command The command to start an app after it is staged, maximum length: 4096 (e.g. 'rails s -p $PORT' or 'java com.org.Server $PORT').
buildpack Buildpack to build the app. 3 options: a) Blank means autodetection; b) A Git Url pointing to a buildpack; c) Name of an installed buildpack.
  • https://github.com/virtualstaticvoid/heroku-buildpack-r.git
  • an_example_installed_buildpack
health_check_type Type of health check to perform. port
  • port
  • none
health_check_timeout Timeout for health checking of an staged app when starting up
diego Use diego to stage and to run when available false
  • true
  • false
docker_image Name of the Docker image containing the app
  • cloudfoundry/helloworld
  • registry.example.com:5000/user/repository/tag
docker_credentials_json Docker credentials for pulling docker image. {}
  • #<RspecApiDocumentation::Views::HtmlExample:0x00000009ca5838>
environment_json Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
production Deprecated. true
  • true
  • false
console Open the console port for the app (at $CONSOLE_PORT). false
  • true
  • false
debug Open the debug port for the app (at $DEBUG_PORT). false
  • true
  • false
staging_failed_reason Reason for application staging failures
staging_failed_description Detailed description for the staging_failed_reason
name The name of the app.
  • my_super_app
memory The amount of memory each instance should have. In megabytes.
  • 1024
  • 512
instances The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
  • 2
  • 6
  • 10
disk_quota The maximum amount of disk available to an instance of an app. In megabytes.
  • 1204
  • 2048
space_guid The guid of the associated space.
  • guid-a9e089e0-3afa-4cb0-9205-545b5c17a4ca
stack_guid The guid of the associated stack. Uses the default system stack.
  • guid-19447c2d-562e-4c8b-8fa5-b9c6c9973718
state The current desired state of the app. One of STOPPED or STARTED. STOPPED
  • STOPPED
  • STARTED
detected_start_command The command detected by the buildpack during staging.
command The command to start an app after it is staged, maximum length: 4096 (e.g. 'rails s -p $PORT' or 'java com.org.Server $PORT').
buildpack Buildpack to build the app. 3 options: a) Blank means autodetection; b) A Git Url pointing to a buildpack; c) Name of an installed buildpack.
  • https://github.com/virtualstaticvoid/heroku-buildpack-r.git
  • an_example_installed_buildpack
health_check_type Type of health check to perform. port
  • port
  • none
health_check_timeout Timeout for health checking of an staged app when starting up
diego Use diego to stage and to run when available false
  • true
  • false
docker_image Name of the Docker image containing the app
  • cloudfoundry/helloworld
  • registry.example.com:5000/user/repository/tag
docker_credentials_json Docker credentials for pulling docker image. {}
  • #<RspecApiDocumentation::Views::HtmlExample:0x00000009ca5838>
environment_json Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
production Deprecated. true
  • true
  • false
console Open the console port for the app (at $CONSOLE_PORT). false
  • true
  • false
debug Open the debug port for the app (at $DEBUG_PORT). false
  • true
  • false
staging_failed_reason Reason for application staging failures
staging_failed_description Detailed description for the staging_failed_reason
{
  "name": "docker_app",
  "space_guid": "d6a9005d-b3b1-4328-a563-20ac40fceb09",
  "docker_image": "cloudfoundry/hello",
  "diego": true
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyMyIsImVtYWlsIjoiZW1haWwtOTFAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ0NDc4MjkyOX0.9Z8eIX1zSL_GaGI4nk61-JJ0zyo_fRJY3Sf6BdfjwKQ
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/apps" -d '{
  "name": "docker_app",
  "space_guid": "d6a9005d-b3b1-4328-a563-20ac40fceb09",
  "docker_image": "cloudfoundry/hello",
  "diego": true
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyMyIsImVtYWlsIjoiZW1haWwtOTFAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ0NDc4MjkyOX0.9Z8eIX1zSL_GaGI4nk61-JJ0zyo_fRJY3Sf6BdfjwKQ" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "2cc7a860-0585-43f9-924c-923720196791",
    "url": "/v2/apps/2cc7a860-0585-43f9-924c-923720196791",
    "created_at": "2015-10-07T00:35:29Z",
    "updated_at": null
  },
  "entity": {
    "name": "docker_app",
    "production": false,
    "space_guid": "d6a9005d-b3b1-4328-a563-20ac40fceb09",
    "stack_guid": "b5fdc4f9-40d4-49e1-ba1f-75c8b2d81507",
    "buildpack": null,
    "detected_buildpack": null,
    "environment_json": {

    },
    "memory": 1024,
    "instances": 1,
    "disk_quota": 1024,
    "state": "STOPPED",
    "version": "3d74ce5a-e394-41bc-8e32-73eaa6e2d4ae",
    "command": null,
    "console": false,
    "debug": null,
    "staging_task_id": null,
    "package_state": "PENDING",
    "health_check_type": "port",
    "health_check_timeout": null,
    "staging_failed_reason": null,
    "staging_failed_description": null,
    "diego": true,
    "docker_image": "cloudfoundry/hello:latest",
    "package_updated_at": "2015-10-07T00:35:29Z",
    "detected_start_command": "",
    "enable_ssh": true,
    "docker_credentials_json": {
      "redacted_message": "[PRIVATE DATA HIDDEN]"
    },
    "space_url": "/v2/spaces/d6a9005d-b3b1-4328-a563-20ac40fceb09",
    "stack_url": "/v2/stacks/b5fdc4f9-40d4-49e1-ba1f-75c8b2d81507",
    "events_url": "/v2/apps/2cc7a860-0585-43f9-924c-923720196791/events",
    "service_bindings_url": "/v2/apps/2cc7a860-0585-43f9-924c-923720196791/service_bindings",
    "routes_url": "/v2/apps/2cc7a860-0585-43f9-924c-923720196791/routes"
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/apps/2cc7a860-0585-43f9-924c-923720196791
X-VCAP-Request-ID: 7901dfaf-2e09-46eb-9e07-982839d76660
Content-Length: 1526
X-Content-Type-Options: nosniff

Audit Records Created By The Request

Audit Record: audit.app.create

Attribute Name Value
id 12
guid dff8f6d2-3fc4-4306-ad64-618bb572c641
created_at 2015-10-07 00:35:29 UTC
updated_at
timestamp 2015-10-07 00:35:29 UTC
type audit.app.create
actor uaa-id-123
actor_type user
actee 2cc7a860-0585-43f9-924c-923720196791
actee_type app
metadata
{
  "request": {
    "name": "docker_app",
    "space_guid": "d6a9005d-b3b1-4328-a563-20ac40fceb09",
    "docker_image": "cloudfoundry/hello",
    "diego": true,
    "console": false,
    "docker_credentials_json": "PRIVATE DATA HIDDEN",
    "environment_json": "PRIVATE DATA HIDDEN",
    "health_check_type": "port",
    "instances": 1,
    "production": false,
    "state": "STOPPED"
  }
}
space_id
organization_guid e13f9aba-bcca-41ca-8af0-16b6e7fa3735
space_guid d6a9005d-b3b1-4328-a563-20ac40fceb09
actor_name email-91@somedomain.com
actee_name docker_app