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.
|
|
|
|
memory
|
The amount of memory each instance should have. In megabytes.
|
|
|
|
instances
|
The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
|
|
|
|
disk_quota
|
The maximum amount of disk available to an instance of an app. In megabytes.
|
|
|
|
space_guid
|
The guid of the associated space.
|
|
|
- guid-e2e81c71-fa1e-44bf-9aeb-1e1a250e2a87
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-df9e0c2b-dea7-4a0c-8fcb-173a8b9af300
|
state
|
The current desired state of the app. One of STOPPED or STARTED.
|
STOPPED
|
|
|
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
|
|
|
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
|
|
|
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
|
|
|
console
|
Open the console port for the app (at $CONSOLE_PORT).
|
false
|
|
|
debug
|
Open the debug port for the app (at $DEBUG_PORT).
|
false
|
|
|
name
|
The name of the app.
|
|
|
|
memory
|
The amount of memory each instance should have. In megabytes.
|
|
|
|
instances
|
The number of instances of the app to run. To ensure optimal availability, ensure there are at least 2 instances.
|
|
|
|
disk_quota
|
The maximum amount of disk available to an instance of an app. In megabytes.
|
|
|
|
space_guid
|
The guid of the associated space.
|
|
|
- guid-fe247d9f-cd7a-4aa4-9c44-777f71ea0c87
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-1507eb5e-85a3-4cea-af13-972ee714240d
|
state
|
The current desired state of the app. One of STOPPED or STARTED.
|
STOPPED
|
|
|
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
|
|
|
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
|
|
|
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
|
|
|
console
|
Open the console port for the app (at $CONSOLE_PORT).
|
false
|
|
|
debug
|
Open the debug port for the app (at $DEBUG_PORT).
|
false
|
|
|
{
"name": "docker_app",
"space_guid": "f96e6e63-f1cc-4de5-a40e-65c9124037da",
"docker_image": "cloudfoundry/hello",
"diego": true
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps" -d '{
"name": "docker_app",
"space_guid": "f96e6e63-f1cc-4de5-a40e-65c9124037da",
"docker_image": "cloudfoundry/hello",
"diego": true
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MCIsImVtYWlsIjoiZW1haWwtMjE4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzE2NDY2NDF9.00G0obOo-rWkNGloUGs1t7xaWooTaFKdzrLxkYmaEBQ" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "395535f7-8f64-4f47-9297-1a583d9913d8",
"url": "/v2/apps/395535f7-8f64-4f47-9297-1a583d9913d8",
"created_at": "2015-05-07T23:37:21Z",
"updated_at": null
},
"entity": {
"name": "docker_app",
"production": false,
"space_guid": "f96e6e63-f1cc-4de5-a40e-65c9124037da",
"stack_guid": "10a83918-c6ec-41ee-9360-f479fddbbeb6",
"buildpack": null,
"detected_buildpack": null,
"environment_json": {
},
"memory": 1024,
"instances": 1,
"disk_quota": 1024,
"state": "STOPPED",
"version": "5ca8b860-f25c-4f6b-b552-48c16f89a04c",
"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-05-07T23:37:21Z",
"detected_start_command": "",
"enable_ssh": false,
"space_url": "/v2/spaces/f96e6e63-f1cc-4de5-a40e-65c9124037da",
"stack_url": "/v2/stacks/10a83918-c6ec-41ee-9360-f479fddbbeb6",
"events_url": "/v2/apps/395535f7-8f64-4f47-9297-1a583d9913d8/events",
"service_bindings_url": "/v2/apps/395535f7-8f64-4f47-9297-1a583d9913d8/service_bindings",
"routes_url": "/v2/apps/395535f7-8f64-4f47-9297-1a583d9913d8/routes"
}
}
Headers
Audit Records Created By The Request
Audit Record: audit.app.create
Attribute Name |
Value |
id
|
191
|
guid
|
28914b82-99e1-4cb9-8ed2-7dde19067e4e
|
created_at
|
2015-05-07 23:37:21 UTC
|
updated_at
|
|
timestamp
|
2015-05-07 23:37:21 UTC
|
type
|
audit.app.create
|
actor
|
uaa-id-290
|
actor_type
|
user
|
actee
|
395535f7-8f64-4f47-9297-1a583d9913d8
|
actee_type
|
app
|
metadata
|
{
"request": {
"name": "docker_app",
"space_guid": "f96e6e63-f1cc-4de5-a40e-65c9124037da",
"docker_image": "cloudfoundry/hello",
"diego": true,
"enable_ssh": false,
"console": false,
"environment_json": "PRIVATE DATA HIDDEN",
"health_check_type": "port",
"instances": 1,
"production": false,
"state": "STOPPED"
}
}
|
space_id
|
260
|
organization_guid
|
bfc4dc05-c10c-4650-bc70-b3ee3dc6815f
|
space_guid
|
f96e6e63-f1cc-4de5-a40e-65c9124037da
|
actor_name
|
email-218@somedomain.com
|
actee_name
|
docker_app
|