Creating a Docker App (experimental)
POST /v2/apps/
Fields
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-e469b677-c4ee-47d2-9762-d6bb8c48af28
|
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
|
|
|
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_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
|
|
|
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-5c2ca08d-9c35-4095-b7f5-7f9527c40226
|
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
|
|
|
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_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
|
|
|
console
|
Open the console port for the app (at $CONSOLE_PORT).
|
false
|
|
|
debug
|
Open the debug port for the app (at $DEBUG_PORT).
|
false
|
|
|
Request
Headers
Route
POST /v2/apps
Body
{
"name": "docker_app",
"memory": 1024,
"instances": 2,
"disk_quota": 1204,
"space_guid": "7cb7ef8e-887c-48c8-b6c6-1525d76e3f8a",
"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",
"memory": 1024,
"instances": 2,
"disk_quota": 1204,
"space_guid": "7cb7ef8e-887c-48c8-b6c6-1525d76e3f8a",
"docker_image": "cloudfoundry/hello",
"environment_json": {
"DIEGO_STAGE_BETA": "true",
"DIEGO_RUN_BETA": "true"
}
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI2OSIsImVtYWlsIjoiZW1haWwtMTk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTU3NTQxNDV9.KurhHb0s-ICMJ3ctEqdr_wzd85dCE-dddjgAE-A_6wo" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "9d5a6bb5-2827-4631-b992-8ec70026ddd0",
"url": "/v2/apps/9d5a6bb5-2827-4631-b992-8ec70026ddd0",
"created_at": "2014-11-05T01:02:25+00:00",
"updated_at": null
},
"entity": {
"name": "docker_app",
"production": false,
"space_guid": "7cb7ef8e-887c-48c8-b6c6-1525d76e3f8a",
"stack_guid": "083fd1d1-525f-4f9f-80aa-d3b595652cb0",
"buildpack": null,
"detected_buildpack": null,
"environment_json": {
"DIEGO_STAGE_BETA": "true",
"DIEGO_RUN_BETA": "true"
},
"memory": 1024,
"instances": 2,
"disk_quota": 1204,
"state": "STOPPED",
"version": "6be6ee69-8007-4e7a-8054-fe655a8bab7f",
"command": null,
"console": false,
"debug": null,
"staging_task_id": null,
"package_state": "PENDING",
"health_check_timeout": null,
"staging_failed_reason": null,
"docker_image": "cloudfoundry/hello:latest",
"package_updated_at": "2014-11-05T01:02:25+00:00",
"detected_start_command": "",
"space_url": "/v2/spaces/7cb7ef8e-887c-48c8-b6c6-1525d76e3f8a",
"stack_url": "/v2/stacks/083fd1d1-525f-4f9f-80aa-d3b595652cb0",
"events_url": "/v2/apps/9d5a6bb5-2827-4631-b992-8ec70026ddd0/events",
"service_bindings_url": "/v2/apps/9d5a6bb5-2827-4631-b992-8ec70026ddd0/service_bindings",
"routes_url": "/v2/apps/9d5a6bb5-2827-4631-b992-8ec70026ddd0/routes"
}
}
Audit Records Created By The Request
Audit Record: audit.app.create
Attribute Name |
Value |
id
|
56
|
guid
|
a36c5aed-dcdd-4d85-8e2c-1a725ad6ad2d
|
created_at
|
2014-11-05 01:02:25 +0000
|
updated_at
|
|
timestamp
|
2014-11-05 01:02:25 +0000
|
type
|
audit.app.create
|
actor
|
uaa-id-269
|
actor_type
|
user
|
actee
|
9d5a6bb5-2827-4631-b992-8ec70026ddd0
|
actee_type
|
app
|
metadata
|
{
"request": {
"name": "docker_app",
"memory": 1024,
"instances": 2,
"disk_quota": 1204,
"space_guid": "7cb7ef8e-887c-48c8-b6c6-1525d76e3f8a",
"docker_image": "cloudfoundry/hello",
"environment_json": "PRIVATE DATA HIDDEN",
"console": false,
"production": false,
"state": "STOPPED"
}
}
|
space_id
|
158
|
organization_guid
|
83c86056-2ed9-4963-b952-be52d2db8d7a
|
space_guid
|
7cb7ef8e-887c-48c8-b6c6-1525d76e3f8a
|
actor_name
|
email-194@somedomain.com
|
actee_name
|
docker_app
|