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-1bf234de-5518-4d56-8053-d2ea8282101b
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-3ea7ba81-4953-411b-8684-ade293c3e8de
|
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-576742e2-b499-477a-9d1f-d8806d408578
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-5147ada5-071d-431b-93d1-7bf5598ab5d5
|
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": "940d22a4-891e-4afa-aa0b-bc16e0e2f9ca",
"docker_image": "cloudfoundry/hello",
"diego": true
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps" -d '{
"name": "docker_app",
"space_guid": "940d22a4-891e-4afa-aa0b-bc16e0e2f9ca",
"docker_image": "cloudfoundry/hello",
"diego": true
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzNCIsImVtYWlsIjoiZW1haWwtMTEzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzI3NzQ5ODZ9.1fUxa-DQSAINjkPhr9MAivRoYaBg-sKUZ4lHph0o9uk" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "d78e0fa5-fb8e-404c-95aa-faf432acde7f",
"url": "/v2/apps/d78e0fa5-fb8e-404c-95aa-faf432acde7f",
"created_at": "2015-05-21T01:03:06Z",
"updated_at": null
},
"entity": {
"name": "docker_app",
"production": false,
"space_guid": "940d22a4-891e-4afa-aa0b-bc16e0e2f9ca",
"stack_guid": "5247fc1c-315b-4948-b168-fa9173dcad9b",
"buildpack": null,
"detected_buildpack": null,
"environment_json": {
},
"memory": 1024,
"instances": 1,
"disk_quota": 1024,
"state": "STOPPED",
"version": "1f7fc8fe-7ce4-4d27-8fff-a496863b4443",
"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-21T01:03:06Z",
"detected_start_command": "",
"enable_ssh": true,
"space_url": "/v2/spaces/940d22a4-891e-4afa-aa0b-bc16e0e2f9ca",
"stack_url": "/v2/stacks/5247fc1c-315b-4948-b168-fa9173dcad9b",
"events_url": "/v2/apps/d78e0fa5-fb8e-404c-95aa-faf432acde7f/events",
"service_bindings_url": "/v2/apps/d78e0fa5-fb8e-404c-95aa-faf432acde7f/service_bindings",
"routes_url": "/v2/apps/d78e0fa5-fb8e-404c-95aa-faf432acde7f/routes"
}
}
Headers
Audit Records Created By The Request
Audit Record: audit.app.create
Attribute Name |
Value |
id
|
14
|
guid
|
16bf2cf3-672a-4929-9f13-2a84dc96a9c9
|
created_at
|
2015-05-21 01:03:06 UTC
|
updated_at
|
|
timestamp
|
2015-05-21 01:03:06 UTC
|
type
|
audit.app.create
|
actor
|
uaa-id-134
|
actor_type
|
user
|
actee
|
d78e0fa5-fb8e-404c-95aa-faf432acde7f
|
actee_type
|
app
|
metadata
|
{
"request": {
"name": "docker_app",
"space_guid": "940d22a4-891e-4afa-aa0b-bc16e0e2f9ca",
"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
|
61
|
organization_guid
|
e22d4c9d-3d37-4b55-9f9d-274672116a95
|
space_guid
|
940d22a4-891e-4afa-aa0b-bc16e0e2f9ca
|
actor_name
|
email-113@somedomain.com
|
actee_name
|
docker_app
|