mirror of https://github.com/portainer/portainer
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
|
import { Resources, RestartPolicy } from 'docker-types/generated/1.41';
|
||
|
import { AxiosRequestHeaders } from 'axios';
|
||
|
|
||
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
||
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
||
|
|
||
|
import { urlBuilder } from '../containers.service';
|
||
|
|
||
|
/**
|
||
|
* UpdateConfig holds the mutable attributes of a Container.
|
||
|
* Those attributes can be updated at runtime.
|
||
|
*/
|
||
|
interface UpdateConfig extends Resources {
|
||
|
// Contains container's resources (cgroups, ulimits)
|
||
|
|
||
|
RestartPolicy?: RestartPolicy;
|
||
|
}
|
||
|
|
||
|
export async function updateContainer(
|
||
|
environmentId: EnvironmentId,
|
||
|
containerId: string,
|
||
|
config: UpdateConfig,
|
||
|
{ nodeName }: { nodeName?: string } = {}
|
||
|
) {
|
||
|
const headers: AxiosRequestHeaders = {};
|
||
|
|
||
|
if (nodeName) {
|
||
|
headers['X-PortainerAgent-Target'] = nodeName;
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
await axios.post<{ Warnings: string[] }>(
|
||
|
urlBuilder(environmentId, containerId, 'update'),
|
||
|
config,
|
||
|
{ headers }
|
||
|
);
|
||
|
} catch (err) {
|
||
|
throw parseAxiosError(err, 'failed updating container');
|
||
|
}
|
||
|
}
|