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-2331aae5-bc5e-4b26-8ee5-b8678c01124f
stack_guid The guid of the associated stack. Uses the default system stack.
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
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-1ba2bc31-62c3-4610-b990-046cd0e5cbf5
stack_guid The guid of the associated stack. Uses the default system stack.
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
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": "82b15327-0244-463f-93cb-f63464ceb843",
  "docker_image": "cloudfoundry/hello",
  "diego": true
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyNCIsImVtYWlsIjoiZW1haWwtODZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNzMyMzk2MX0.9RRkYvyapI-sVQVe9-v-K9vbrY6uzFL3O5UvwAp66BQ
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": "82b15327-0244-463f-93cb-f63464ceb843",
  "docker_image": "cloudfoundry/hello",
  "diego": true
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyNCIsImVtYWlsIjoiZW1haWwtODZAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNzMyMzk2MX0.9RRkYvyapI-sVQVe9-v-K9vbrY6uzFL3O5UvwAp66BQ" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "8e6bcb7e-2009-4989-a1f0-bf061c631ae2",
    "url": "/v2/apps/8e6bcb7e-2009-4989-a1f0-bf061c631ae2",
    "created_at": "2015-03-18T22:52:41Z",
    "updated_at": null
  },
  "entity": {
    "name": "docker_app",
    "production": false,
    "space_guid": "82b15327-0244-463f-93cb-f63464ceb843",
    "stack_guid": "06a7de42-b8a6-4e1a-aa11-4ff8f3f63799",
    "buildpack": null,
    "detected_buildpack": null,
    "environment_json": {

    },
    "memory": 1024,
    "instances": 1,
    "disk_quota": 1024,
    "state": "STOPPED",
    "version": "ea5f0195-46d2-41dd-879c-688acca12e62",
    "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-03-18T22:52:41Z",
    "detected_start_command": "",
    "space_url": "/v2/spaces/82b15327-0244-463f-93cb-f63464ceb843",
    "stack_url": "/v2/stacks/06a7de42-b8a6-4e1a-aa11-4ff8f3f63799",
    "events_url": "/v2/apps/8e6bcb7e-2009-4989-a1f0-bf061c631ae2/events",
    "service_bindings_url": "/v2/apps/8e6bcb7e-2009-4989-a1f0-bf061c631ae2/service_bindings",
    "routes_url": "/v2/apps/8e6bcb7e-2009-4989-a1f0-bf061c631ae2/routes"
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/apps/8e6bcb7e-2009-4989-a1f0-bf061c631ae2
X-VCAP-Request-ID: 3b68b2b7-083b-4c5a-add1-4148455b124d
Content-Length: 1372
X-Content-Type-Options: nosniff

Audit Records Created By The Request

Audit Record: audit.app.create

Attribute Name Value
id 15
guid 9d36ff9f-2e65-484b-aea9-a21263f71dd0
created_at 2015-03-18 22:52:41 UTC
updated_at
timestamp 2015-03-18 22:52:41 UTC
type audit.app.create
actor uaa-id-124
actor_type user
actee 8e6bcb7e-2009-4989-a1f0-bf061c631ae2
actee_type app
metadata
{
  "request": {
    "name": "docker_app",
    "space_guid": "82b15327-0244-463f-93cb-f63464ceb843",
    "docker_image": "cloudfoundry/hello",
    "diego": true,
    "console": false,
    "environment_json": "PRIVATE DATA HIDDEN",
    "health_check_type": "port",
    "instances": 1,
    "production": false,
    "state": "STOPPED"
  }
}
space_id 55
organization_guid 32c9f4e7-1116-4d24-95e9-1b0a3197a5b2
space_guid 82b15327-0244-463f-93cb-f63464ceb843
actor_name email-86@somedomain.com
actee_name docker_app