Restart a stopped container

post

/api/v2/containers/{container_id}/restart

Restarts a specific container, identified by the container_id parameter. Note that this endpoint affects only stopped or running containers.

Request

Path Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

200 Response
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : items
Type: object
Show Source

Default Response

Error Payload
Body ()
Root Schema : schema
Type: array
Show Source
Back to Top

Examples

The following example shows how to restart a container. You perform this task by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.

Note: The command in this example uses the URL structure https://rest_server_url/resource-path, where rest_server_url is the manager node for the Oracle Cloud Container instance. See Send Requests for the appropriate URL structure to use for Oracle Public Cloud.

cURL Command

curl -sk 
     -X "POST"
     -H "Authorization: Bearer b39f09c71c297f1d" 
     "https://rest_server_url/api/v2/containers/853f5d8afd3dd530f31ed9292ac721644b058779c25c1e698eb2d738c641b613/restart"

Example of Response Body

{
	"task_id": "59615dc3-2812-44b0-8067-180314e198ab"
}
Back to Top