Home
Version 3
Apps API

Apps API

Creating a Docker App (experimental)

POST /v2/apps/

Fields

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-960f983c-5db0-4def-a102-26a4657c8b6f
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 (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
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-6e565032-dc15-4022-b767-f4782445cc7f
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 (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
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

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE0MSIsImVtYWlsIjoiZW1haWwtOTNAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQxOTk4OTk2N30.s2-oJF6ni2wVHymcl4k3fds5_CKBX1O-NastdwBXXUE
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

Route

POST /v2/apps

Body

{
  "name": "docker_app",
  "space_guid": "af44a602-aa4d-4107-a15a-ebd2ef761173",
  "docker_image": "cloudfoundry/hello",
  "environment_json": {
    "DIEGO_STAGE_BETA": "true",
    "DIEGO_RUN_BETA": "true"
  }
}

cURL

curl "https://api.[your-domain.com]/v2/apps" -d '{
  "name": "docker_app",
  "space_guid": "af44a602-aa4d-4107-a15a-ebd2ef761173",
  "docker_image": "cloudfoundry/hello",
  "environment_json": {
    "DIEGO_STAGE_BETA": "true",
    "DIEGO_RUN_BETA": "true"
  }
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE0MSIsImVtYWlsIjoiZW1haWwtOTNAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQxOTk4OTk2N30.s2-oJF6ni2wVHymcl4k3fds5_CKBX1O-NastdwBXXUE" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/apps/8e7e0a3c-cec1-4f43-adad-203211831612
X-VCAP-Request-ID: d960f3f5-ea12-469f-9fc4-6c47a0b0250d
Content-Length: 1427
X-Content-Type-Options: nosniff

Status

201 Created

Body

{
  "metadata": {
    "guid": "8e7e0a3c-cec1-4f43-adad-203211831612",
    "url": "/v2/apps/8e7e0a3c-cec1-4f43-adad-203211831612",
    "created_at": "2014-12-24T01:39:27+00:00",
    "updated_at": null
  },
  "entity": {
    "name": "docker_app",
    "production": false,
    "space_guid": "af44a602-aa4d-4107-a15a-ebd2ef761173",
    "stack_guid": "e71bebe2-0011-40e4-b63e-10e2f86a1e9f",
    "buildpack": null,
    "detected_buildpack": null,
    "environment_json": {
      "DIEGO_STAGE_BETA": "true",
      "DIEGO_RUN_BETA": "true"
    },
    "memory": 1024,
    "instances": 1,
    "disk_quota": 1024,
    "state": "STOPPED",
    "version": "d87d25b2-1930-4de9-a36a-a4ff99f1f02c",
    "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,
    "docker_image": "cloudfoundry/hello:latest",
    "package_updated_at": "2014-12-24T01:39:27+00:00",
    "detected_start_command": "",
    "space_url": "/v2/spaces/af44a602-aa4d-4107-a15a-ebd2ef761173",
    "stack_url": "/v2/stacks/e71bebe2-0011-40e4-b63e-10e2f86a1e9f",
    "events_url": "/v2/apps/8e7e0a3c-cec1-4f43-adad-203211831612/events",
    "service_bindings_url": "/v2/apps/8e7e0a3c-cec1-4f43-adad-203211831612/service_bindings",
    "routes_url": "/v2/apps/8e7e0a3c-cec1-4f43-adad-203211831612/routes"
  }
}

Audit Records Created By The Request

Audit Record: audit.app.create

Attribute Name Value
id 146
guid c6490590-2642-4f97-8c74-f77ea33012f1
created_at 2014-12-24 01:39:27 +0000
updated_at
timestamp 2014-12-24 01:39:27 +0000
type audit.app.create
actor uaa-id-141
actor_type user
actee 8e7e0a3c-cec1-4f43-adad-203211831612
actee_type app
metadata
{
  "request": {
    "name": "docker_app",
    "space_guid": "af44a602-aa4d-4107-a15a-ebd2ef761173",
    "docker_image": "cloudfoundry/hello",
    "environment_json": "PRIVATE DATA HIDDEN",
    "console": false,
    "health_check_type": "port",
    "instances": 1,
    "production": false,
    "state": "STOPPED"
  }
}
space_id 159
organization_guid a0c8367f-676c-48b5-ac2c-f852cbac29bc
space_guid af44a602-aa4d-4107-a15a-ebd2ef761173
actor_name email-93@somedomain.com
actee_name docker_app