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-97a94253-5fd6-47c1-a7dc-ce8f32f0cc31
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
- guid-efc63644-ceef-4bf2-9794-a2bfd7bbaaf9
|
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. 'none' is deprecated and an alias to 'process'.
|
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:0x00000004d29bd8>
|
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
|
|
|
|
ports
|
Ports on which application may listen. Overwrites previously configured ports. Ports must be in range 1024-65535. Supported for Diego only.
|
|
|
|
{
"name": "docker_app",
"space_guid": "8c3ce8ba-d2b9-4853-b96c-478b89512e54",
"docker_image": "cloudfoundry/hello",
"diego": true
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps" -d '{
"name": "docker_app",
"space_guid": "8c3ce8ba-d2b9-4853-b96c-478b89512e54",
"docker_image": "cloudfoundry/hello",
"diego": true
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExNiIsImVtYWlsIjoiZW1haWwtODdAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ1MzgzNzI2Mn0.GR8OHJzQo_Jp0Fh25r2Jhdw1UewYMqZxgus3ZPV2Maw" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "c48c442c-a256-4e58-bc17-d1d89cad3fcc",
"url": "/v2/apps/c48c442c-a256-4e58-bc17-d1d89cad3fcc",
"created_at": "2016-01-19T19:41:02Z",
"updated_at": null
},
"entity": {
"name": "docker_app",
"production": false,
"space_guid": "8c3ce8ba-d2b9-4853-b96c-478b89512e54",
"stack_guid": "4d0d84d9-9e3e-482d-84a7-dceaa6e242df",
"buildpack": null,
"detected_buildpack": null,
"environment_json": {
},
"memory": 1024,
"instances": 1,
"disk_quota": 1024,
"state": "STOPPED",
"version": "5c6ffcdc-00a4-490e-8873-468b8723bf88",
"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": "2016-01-19T19:41:02Z",
"detected_start_command": "",
"enable_ssh": true,
"docker_credentials_json": {
"redacted_message": "[PRIVATE DATA HIDDEN]"
},
"ports": [
8080
],
"space_url": "/v2/spaces/8c3ce8ba-d2b9-4853-b96c-478b89512e54",
"stack_url": "/v2/stacks/4d0d84d9-9e3e-482d-84a7-dceaa6e242df",
"events_url": "/v2/apps/c48c442c-a256-4e58-bc17-d1d89cad3fcc/events",
"service_bindings_url": "/v2/apps/c48c442c-a256-4e58-bc17-d1d89cad3fcc/service_bindings",
"routes_url": "/v2/apps/c48c442c-a256-4e58-bc17-d1d89cad3fcc/routes"
}
}
Headers
Audit Records Created By The Request
Audit Record: audit.app.create
Attribute Name |
Value |
id
|
3
|
guid
|
1f4e5488-2ed4-4ed9-a4d2-39fcf3e430be
|
created_at
|
2016-01-19 19:41:02 UTC
|
updated_at
|
|
timestamp
|
2016-01-19 19:41:02 UTC
|
type
|
audit.app.create
|
actor
|
uaa-id-116
|
actor_type
|
user
|
actee
|
c48c442c-a256-4e58-bc17-d1d89cad3fcc
|
actee_type
|
app
|
metadata
|
{
"request": {
"name": "docker_app",
"space_guid": "8c3ce8ba-d2b9-4853-b96c-478b89512e54",
"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
|
caee570a-8bd8-438f-9b28-6c75303cf9f7
|
space_guid
|
8c3ce8ba-d2b9-4853-b96c-478b89512e54
|
actor_name
|
email-87@somedomain.com
|
actee_name
|
docker_app
|