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-e50a528d-3dc5-4235-bf5d-6a61c9f9dda9
stack_guid The guid of the associated stack. Uses the default system stack.
  • guid-4ad0064b-eca8-47ad-a904-06e19453d52c
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:0x00000005e9a318>
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
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-a33073c0-195e-40dc-805d-4695dc49157f
stack_guid The guid of the associated stack. Uses the default system stack.
  • guid-34d7560f-3f65-45a7-80da-11b529d42ecd
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:0x00000005e9a318>
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
{
  "name": "docker_app",
  "space_guid": "cfbdab61-b488-4f5b-9f35-099a512cdc88",
  "docker_image": "cloudfoundry/hello",
  "diego": true
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTgiLCJlbWFpbCI6ImVtYWlsLThAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzNTEwMjg0M30.BbEsKCKJdPuiuYT49cvU22pieqgy9Ks3Kp8AgzIeblg
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": "cfbdab61-b488-4f5b-9f35-099a512cdc88",
  "docker_image": "cloudfoundry/hello",
  "diego": true
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTgiLCJlbWFpbCI6ImVtYWlsLThAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzNTEwMjg0M30.BbEsKCKJdPuiuYT49cvU22pieqgy9Ks3Kp8AgzIeblg" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "6c05d577-ab7b-444a-a65f-a7855331156c",
    "url": "/v2/apps/6c05d577-ab7b-444a-a65f-a7855331156c",
    "created_at": "2015-06-16T23:40:43Z",
    "updated_at": null
  },
  "entity": {
    "name": "docker_app",
    "production": false,
    "space_guid": "cfbdab61-b488-4f5b-9f35-099a512cdc88",
    "stack_guid": "5e43ffbc-1b88-4a40-a693-b9262613deb2",
    "buildpack": null,
    "detected_buildpack": null,
    "environment_json": {

    },
    "memory": 1024,
    "instances": 1,
    "disk_quota": 1024,
    "state": "STOPPED",
    "version": "140151d7-792d-46f3-bbc4-6c2dc4306e8d",
    "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,
    "diego": true,
    "docker_image": "cloudfoundry/hello:latest",
    "package_updated_at": "2015-06-16T23:40:43Z",
    "detected_start_command": "",
    "enable_ssh": true,
    "docker_credentials_json": {
      "redacted_message": "[PRIVATE DATA HIDDEN]"
    },
    "space_url": "/v2/spaces/cfbdab61-b488-4f5b-9f35-099a512cdc88",
    "stack_url": "/v2/stacks/5e43ffbc-1b88-4a40-a693-b9262613deb2",
    "events_url": "/v2/apps/6c05d577-ab7b-444a-a65f-a7855331156c/events",
    "service_bindings_url": "/v2/apps/6c05d577-ab7b-444a-a65f-a7855331156c/service_bindings",
    "routes_url": "/v2/apps/6c05d577-ab7b-444a-a65f-a7855331156c/routes"
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/apps/6c05d577-ab7b-444a-a65f-a7855331156c
X-VCAP-Request-ID: 061c879d-cf54-4b82-a078-61a624b81c3c
Content-Length: 1486
X-Content-Type-Options: nosniff

Audit Records Created By The Request

Audit Record: audit.app.create

Attribute Name Value
id 4
guid 383127d2-8ef7-48ad-92e7-1971a3e7785f
created_at 2015-06-16 23:40:43 UTC
updated_at
timestamp 2015-06-16 23:40:43 UTC
type audit.app.create
actor uaa-id-8
actor_type user
actee 6c05d577-ab7b-444a-a65f-a7855331156c
actee_type app
metadata
{
  "request": {
    "name": "docker_app",
    "space_guid": "cfbdab61-b488-4f5b-9f35-099a512cdc88",
    "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 29
organization_guid 8c9b9f70-66c5-4d81-bdb9-a1e63847a8a8
space_guid cfbdab61-b488-4f5b-9f35-099a512cdc88
actor_name email-8@somedomain.com
actee_name docker_app