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-6626b432-5903-4fed-b739-96a8fd596580
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-7181fb42-5ff5-4793-b155-10c3f8a56c62
|
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
|
docker_credentials_json
|
Docker credentials for pulling docker image.
|
{}
|
|
- #<RspecApiDocumentation::Views::HtmlExample:0x00000006c7a780>
|
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
|
|
|
staging_failed_reason
|
Reason for application staging failures
|
|
|
|
staging_failed_description
|
Detailed description for the staging_failed_reason
|
|
|
|
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-b4b9cfb5-237b-423f-8453-aa7bce5768f6
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-5cc47cff-1a41-4fba-8104-7f7c7d33669a
|
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
|
docker_credentials_json
|
Docker credentials for pulling docker image.
|
{}
|
|
- #<RspecApiDocumentation::Views::HtmlExample:0x00000006c7a780>
|
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
|
|
|
staging_failed_reason
|
Reason for application staging failures
|
|
|
|
staging_failed_description
|
Detailed description for the staging_failed_reason
|
|
|
|
{
"name": "docker_app",
"space_guid": "3426040b-7ef2-4b3e-bf7a-c33b8fecc97b",
"docker_image": "cloudfoundry/hello",
"diego": true
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps" -d '{
"name": "docker_app",
"space_guid": "3426040b-7ef2-4b3e-bf7a-c33b8fecc97b",
"docker_image": "cloudfoundry/hello",
"diego": true
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI1NCIsImVtYWlsIjoiZW1haWwtMTU4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NTF9.TXLhz5yGBpWUbp074rySjdGxIfY4Cvk1c55ayNlTgzY" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "27151987-09da-4ac6-be25-df39149eb3e1",
"url": "/v2/apps/27151987-09da-4ac6-be25-df39149eb3e1",
"created_at": "2015-10-15T23:52:31Z",
"updated_at": null
},
"entity": {
"name": "docker_app",
"production": false,
"space_guid": "3426040b-7ef2-4b3e-bf7a-c33b8fecc97b",
"stack_guid": "acbdc01a-3858-498c-8da5-f0f804f53938",
"buildpack": null,
"detected_buildpack": null,
"environment_json": {
},
"memory": 1024,
"instances": 1,
"disk_quota": 1024,
"state": "STOPPED",
"version": "427c172c-b49d-43d7-9b5b-e1436f5d483c",
"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,
"staging_failed_description": null,
"diego": true,
"docker_image": "cloudfoundry/hello:latest",
"package_updated_at": "2015-10-15T23:52:31Z",
"detected_start_command": "",
"enable_ssh": true,
"docker_credentials_json": {
"redacted_message": "[PRIVATE DATA HIDDEN]"
},
"space_url": "/v2/spaces/3426040b-7ef2-4b3e-bf7a-c33b8fecc97b",
"stack_url": "/v2/stacks/acbdc01a-3858-498c-8da5-f0f804f53938",
"events_url": "/v2/apps/27151987-09da-4ac6-be25-df39149eb3e1/events",
"service_bindings_url": "/v2/apps/27151987-09da-4ac6-be25-df39149eb3e1/service_bindings",
"routes_url": "/v2/apps/27151987-09da-4ac6-be25-df39149eb3e1/routes"
}
}
Headers
Audit Records Created By The Request
Audit Record: audit.app.create
Attribute Name |
Value |
id
|
196
|
guid
|
4e56baed-551c-4201-9c53-2dd69b178023
|
created_at
|
2015-10-15 23:52:31 UTC
|
updated_at
|
|
timestamp
|
2015-10-15 23:52:31 UTC
|
type
|
audit.app.create
|
actor
|
uaa-id-254
|
actor_type
|
user
|
actee
|
27151987-09da-4ac6-be25-df39149eb3e1
|
actee_type
|
app
|
metadata
|
{
"request": {
"name": "docker_app",
"space_guid": "3426040b-7ef2-4b3e-bf7a-c33b8fecc97b",
"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
|
|
organization_guid
|
62e22d26-34b1-4e4c-9490-f2ab8a14c9c5
|
space_guid
|
3426040b-7ef2-4b3e-bf7a-c33b8fecc97b
|
actor_name
|
email-158@somedomain.com
|
actee_name
|
docker_app
|