Pull image and recreate
POST/stacks/ {stackId}/ services/ {serviceId}/ actions/ pull/
v2
POST
container-pull-image-for-service
Pulls the image for this container and recreates it. This is equivalent to running docker-compose pull
and docker-compose up -d
on the command line.
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/stacks/f0f86186-0a5a-45b2-aa33-502777496347/services/f0f86186-0a5a-45b2-aa33-502777496347/actions/pull
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.container.pullImageForService({
"stackId": "f0f86186-0a5a-45b2-aa33-502777496347",
"serviceId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\Container\PullImageForService\PullImageForServiceRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new PullImageForServiceRequest(
stackId: "f0f86186-0a5a-45b2-aa33-502777496347",
serviceId: "f0f86186-0a5a-45b2-aa33-502777496347"
));
$response = $client->container()->pullImageForService($request);
var_dump($response->getBody();